尝试运行时:
yum --enablerepo=remi install php-pgsql
我收到以下错误,这是为什么?
Error: Missing Dependency: php-common = 5.3.5-1.el5.remi.1 is needed by package php-pgsql-5.3.5-1.el5.remi.1.x86_64 (remi)
答案1
重新安装 php:
yum --enablerepo=remi reinstall php
然后安装 php-pgsql:
yum --enablerepo=remi install php-pgsql
如果您从 webtatic repo 安装 php,请首先删除 php 和 php-common:
yum erase php
yum erase php-common
然后从 remi 安装 php:
yum --enablerepo=remi --disablerepo=webtatic install php