最近手痒,就安装了一个centos 6.5玩玩。
由于新的centos的当前版本已经达到7.1。
而且最糟的是在本人不小心的时候在安装软件的时候,
确定里里面的更新系统命令,导致版本变为了6.9。
然后在安装gd库的时候,输入
yum -y install php-gd
安装命令。
就出现了错误~~~:
Error: php55w-common conflicts with php-common-5.3.3-49.el6.x86_64
You could try using --skip-broken to work around the problem
我查过一些博客,大神们说这是由于之前的系统有其他的版本的php,与当前的php不一致,
故在安装的时候需要结合一下自己的php的版本:
本人的是php 5.5..
故输入:
yum install php55w-gd
重启一下服务器:
service httpd restart
然后就会在phpinfo的输出中看到已经开启支持gd拓展。