Libzip 版本过低或提示 reinstall解决方法
编译 zlib 时提示 configure: error: Please reinstall the libzip distributio 或 configure: error: system libzip must be upgraded to version >= 0.11
一、先删除libzip
apt remove libzip
SSH 执行以上命令,先删除 libzip 和 libzip-devel
二、下载安装并手动编译
wget https://nih.at/libzip/libzip-1.2.0.tar.gz
tar -zxvf libzip-1.2.0.tar.gz
cd libzip-1.2.0
./configure
make
make install
三、(可忽略)另外最新版本请参考官网:https://nih.at/libzip/ 1.5.0 的 libzip 需要 cmake
wget https://libzip.org/download/libzip-1.5.0.tar.gz
tar -zxvf libzip-*
cd libzip*
mkdir build
cd build
cmake ..
make
make install
如果提示 cmake: command not found ,需要先 apt install cmake 或手动编译更高版本。