install php70-gd on ubuntu

前端 未结 6 1179
攒了一身酷
攒了一身酷 2020-12-05 06:21

Recently the new php7 has been released. However, when I am trying to install the gd package, the library can not be found.

I have tried through

sudo         


        
6条回答
  •  死守一世寂寞
    2020-12-05 06:41

    check php verison first using

    php -v
    

    It will give version number suppose your version is 7.0.1 then use this command to install GD Library

     sudo yum install php70-gd
    

    OR use this command depending upon server specification

    sudo apt-get install php7.0-gd
    

提交回复
热议问题