我们在编译安装的时候有时候会出现这个错误:
[root@fuwuqiweihu_com ~]# phpize
bash: phpize: command not found
这个错误是因为服务器上没有phpize这个命令,我们需要安装php-devel package:
Centos系统:
yum -y install php-devel
ubuntu系统:
apt-get install php5-dev
我们在编译安装的时候有时候会出现这个错误:
[root@fuwuqiweihu_com ~]# phpize
bash: phpize: command not found
这个错误是因为服务器上没有phpize这个命令,我们需要安装php-devel package:
Centos系统:
yum -y install php-devel
ubuntu系统:
apt-get install php5-dev