CentOS 7 源码安装 libzip 1.5.2,解决 error: Please reinstall the libzip distributio
或 error: system libzip must be upgraded to version >= 0.11
错误。
1、准备编译环境
yum install openssl-devel bzip2 bzip2-devel
2、下载源码,并解压
wget https://libzip.org/download/libzip-1.5.2.tar.gz
tar -zxf libzip-1.5.2.tar.gz
cd libzip-1.5.2
备用下载地址:https://down.24kplus.com/linux/libzip-1.5.2.tar.gz
3、编译安装
这个不可以
mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX=/usr .. && make
sudo make install
用这个
mkdir build
cd build
cmake ..
make
make install
如果提示 cmake: command not found
,需要先安装 cmake。