php-7.3.4 configure: error: Please reinstall the libzip distribution # wget https://libzip.org/download/libzip-1.5.2.tar.gz tar -zxf libzip-1.5.2.tar.gz cd libzip-1.5.2 mkdir build cd build  cmake .. make -j4 make install…
configure: error: Please reinstall the libcurl distribution - easy.h should be in /include/curl/ 基本上确定是丢失了什么包所致,上网搜索得到需要事先安装的依赖包. # RetHat CentOS or Fedora 使用下面安装命令 yum install curl curl-devel # Debian or Ubuntu使用下面的安装命令 apt-get install curl apt-get…
今天配置一台server的php支持curl的时候, 出现如下报错 checking for cURL in default path... not foundconfigure: error: Please reinstall the libcurl distribution -easy.h should be in /include/curl/ 其实就是curl的dev包没有安装, 解决方案:终端下 # yum -y install curl-devel 可以…
编译php出现错误: configure: error: Please reinstall the libcurl distribution - easy.h should be in <curl-dir>/include/curl/ 解决方法: # yum install -y libcurl-devel…
安装中遇到的问题 在运行 ./configure 时,提示: Please reinstall the libzip distribution 是因为 libzip 版本过低,编译升级 先卸载了原先的 libzip yum remove libzip # 下载 libzip 源码(去网站选择合适的版本) wget https://nih.at/libzip/libzip-xxx.tar.gz # 解压 tar -zxvf libzip-xxx.tar.gz cd libzip-xxx # 配置…
PHP配置Configure报错:Please reinstall the libzip distribution 发生情景: php执行配置命令configure时,报如下错误: checking for libzip... not foundconfigure: error: Please reinstall the libzip distribution 错误含义: 没有找到libzip请重新安装libzip的dev包. 尝试解决: (1)移除旧的libzip: yum remove li…
今天配置一台server的php支持curl的时候, 出现如下报错 checking for cURL in default path... not foundconfigure: error: Please reinstall the libcurl distribution -easy.h should be in /include/curl/ 其实就是curl的dev包没有安装, 解决方案:终端下 # yum -y install curl-devel 然后就可以继续了…