./configure: error: the HTTP gzip module requires the zlib library
时间: 2024-06-12 07:10:25 浏览: 314
./nginx: No such file or directory
5星 · 资源好评率100%
这个错误提示是因为在编译安装某个软件时缺少 zlib 库,需要先安装 zlib 库才能继续编译安装。可以通过以下命令安装 zlib 库:
Ubuntu/Debian 系统:
```
sudo apt-get install zlib1g-dev
```
CentOS/RHEL 系统:
```
sudo yum install zlib-devel
```
阅读全文