Ubuntu 安装PHP找不着BZip2

前端之家收集整理的这篇文章主要介绍了Ubuntu 安装PHP找不着BZip2前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

错误如下:

checking for BZip2 in default path... not found
configure: error: Please reinstall the BZip2 distribution

我已经安装了bzip2,应该是需要安装bzip2-dev,可是运行命令sudo apt-get install bzip2-dev 结果是:E: 无法定位软件包 bzip2-dev
最后在Ubuntu bzip2 package 发现该库在Ubuntu的真正名字是libbz2-dev,所以执行如下命令配置通过:

sudo apt-get install libbz2-dev

另外,若出现 configure: error: Cannot find OpenSSL's libraries 这个错误,可尝试安装这个:

sudo apt-get install libcurl4-openssl-dev

猜你在找的Ubuntu相关文章