Please reinstall the libzip distribution 或 libzip.so.5: cannot open shared object file解决办法

编译安装PHP 7.3.5的时候,报错:“Please reinstall the libzip distribution”。
查了下,按如下方式处理即可(安装编译用的程序的指令自己对应自己的平台)。

apt-get install gcc cmake -y
curl https://libzip.org/download/libzip-1.5.2.tar.gz -O libzip-1.5.2.tar.gz
tar -zxvf libzip-1.5.2.tar.gz
cd libzip-1.5.2
cmake .
make && make install

通常,碰到报错:“libzip.so.5: cannot open shared object file”。
也可以使用上述方法编译安装解决问题。


未经允许不得转载:阿藏博客 » Please reinstall the libzip distribution 或 libzip.so.5: cannot open shared object file解决办法