yum安装php Requires: libzip5(x86

发布时间:2024-12-08 15:18

后端开发涉及Java、PHP等语言 #生活知识# #生活经验# #编程#

最新推荐文章于 2024-09-13 12:21:27 发布

weixin_33796177 于 2018-03-10 11:52:00 发布

在做实验时,使用rpm包安装php时,系统自带的版本总是很旧。想安装新版本的php rpm包时,又发现各种依赖包版本达不到要求。

Error: Package: php-pecl-zip-1.15.2-1.el6.remi.5.6.x86_64 (remi)

Requires: libzip5(x86-64) >= 1.3.2

Error: Package: php-pecl-zip-1.15.2-1.el6.remi.5.6.x86_64 (remi)

Requires: libzip.so.5()(64bit)

所以,只能从remi源来获取php,但是只配置remi还不够,因为它只有php各个版本相关的包,其他依赖包(如libzip5)和相关工具(如php-fpm)都放在remi safe源中的,因此需要同时配置remi源和remi safe源,remi safe中存放的是安装php过程中可能需要的包以及其他相关工具,例如依赖包libzip5、php容器php-fpm。

[root@xuexi ~]# cat /etc/yum.repos.d/remi.repo

[remi]

name=remirepo

baseurl=https://mirrors.tuna.tsinghua.edu.cn/remi/enterprise/6/php56/x86_64/

enable=1

gpgcheck=0

[remisafe]

name=remisaferepo

baseurl=https://mirrors.tuna.tsinghua.edu.cn/remi/enterprise/6/safe/x86_64/

enable=1

gpgcheck=0

再yum安装就一路顺利了。

yum --disablerepo=* --enablerepo=remi* -y install php php-fpm

网址:yum安装php Requires: libzip5(x86 https://www.yuejiaxmz.com/news/view/414398

相关内容

【Discuz】在linux中搭建 Discuz 论坛(LAMP=linux+Apache+mysql+PHP)
yum无法使用解决方法(比较全)
consider using the replace, lineinfile
package 'xmltodict' requires a different py
MySQL日常问题
什么是php?php是什么?
PHP中=>和
关于在php.ini中添加extension=php
PHP中的家庭智能安全管理系统开发指南
通过php://filter/read=convert.base64

随便看看