安装 phpmyadmin 报错:php71u-json conflicts with PHP -common-5.4.16
安装的环境:centos7 php7 openresty
输入:yum install -y phpmyadmin
出现:
Error: php71u-json conflicts with php-common-5.4.16-43.el7_4.1.x86_64
Error: php71u-common conflicts with php-common-5.4.16-43.el7_4.1.x86_64
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest
已经尝试执行:--skip-broken 和 rpm -Va --nofiles --nodigest,没有任何作用。google 了一堆丝毫不起作用,请问同学们如何解决?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
yum install scl-utils
yum install https://dl.fedoraproject.org/...
yum install http://rpms.remirepo.net/ente...
yum install php70
yum install php70-php-mysqlnd
yum install php70-php-curl
yum install php70-php-simplexml
yum install php70-php-devel php70-php-gd php70-php-json php70-php-mcrypt php70-php-mbstring php70-php-opcache php70-php-pear php70-php-pecl-apcu php70-php-pecl-geoip php70-php-pecl-imagick php70-php-pecl-json-post php70-php-pecl-memcache php70-php-pecl-xmldiff php70-php-pecl-zip php70-php-pspell php70-php-soap php70-php-tidy php70-php-xml php70-php-xmlrpc
sudo yum install -y phpmyadmin
Finally,google works.
这是因为你的yum源是php5.4,而你的7+版本而冲突。两种方法,更换yum源再用yum安装,或者用源码包编译安装,编译安装可能会遇到需要安装依赖,自己看着办
目前为止 phpmyadmin 还不支持php7+ 兄dei