【Linux】centos7安装PHP7.4报错:libzip版本过低

问题描述

configure: error: Package requirements (libzip >= 0.11 libzip != 1.3.1 libzip != 1.7.0) were not met:

javascript 复制代码
checking for libzip >= 0.11 libzip != 1.3.1 libzip != 1.7.0... no
configure: error: Package requirements (libzip >= 0.11 libzip != 1.3.1 libzip != 1.7.0) were not met:

Requested 'libzip >= 0.11' but version of libzip is 0.10.1

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables LIBZIP_CFLAGS
and LIBZIP_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

原因:当前服务器libzip的版本小于0.11比较低,需要更新升级,而且libzip升级版本不能是1.3.1,1.7.0的。

查看服务器上libzip的版本

rpm -qa|grep libzip

解决方案:升级libzip

1.卸载旧版libzip

bash 复制代码
yum remove libzip libzip-devel

验证是否卸载成功:rpm -qa|grep libzip,如无输出信息则卸载成功。

2.下载libzip

官网地址:https://libzip.org/download/

也可以直接在download后直接拼接要下载的libzip的版本

如:下载libzip.1.3.2版本:

bash 复制代码
https://libzip.org/download/libzip-1.3.2.tar.gz

3.编译安装

bash 复制代码
tar -zxvf libzip-1.3.2.tar.gz
cd libzip-1.3.2/
./configure
make && make install

安装完成后,查看是否存在/usr/local/lib/pkgconfig目录,如果存在,

执行如下命令来设置PKG_CONFIG_PATH:

注意:只是在当前的shell会话中设置了这个环境变量

bash 复制代码
export PKG_CONFIG_PATH="/usr/local/lib/pkgconfig/"

验证libzip:whereis libzip

参考:configure: error: Package requirements (libzip >= 0.11 libzip != 1.3.1 libzip != 1.7.0) were not met_configure: error: package requirements (libzip >= -CSDN博客

相关推荐
mounter62514 小时前
现代 Linux 内存管理的演进与变革:从传统 LRU 到多代架构 MGLRU
linux·服务器·kernel
赵渝强老师14 小时前
【赵渝强老师】Kubernetes(K8s)中的金丝雀升级
linux·docker·云原生·容器·kubernetes
Qt程序员14 小时前
Linux RCU 原理与应用
linux·c++·内核·linux内核·rcu
The Sheep 202315 小时前
Vue复习
linux·服务器·数据库
兄台の请冷静15 小时前
Linux 安装es
linux·elasticsearch·jenkins
CRMEB系统商城15 小时前
CRMEB多商户系统(Java)v2.3公测版发布
java·开发语言·人工智能·小程序·开源·php
fengyehongWorld15 小时前
Linux rg命令
linux
pride.li15 小时前
海思视觉Hi3516CV610--开机自动设置ip
linux·网络·网络协议·tcp/ip
我叫张小白。15 小时前
CentOS 7 安装 Docker并配置镜像加速(完整指南)
linux·docker·centos
修炼室16 小时前
外网环境原生直连校内服务器:基于内网穿透 + SSH 密钥认证的完整实践指南
服务器·ssh·php