./configure --prefix=/usr/local/nginx --user=www --group=www --with-http_stub_status_module --with-http_ssl_module 报错 checking for OS + Linux 2.6.32-754.35.1.el6.x86_64 x86_64 checking for C compiler ... not found ./configure: error: C compiler cc is not found
时间: 2024-03-05 08:50:26 浏览: 143
nginx-tcp-lua-module.zip
这个错误提示说明你的系统中没有找到C编译器,因此无法继续编译。你需要安装一个C编译器,例如gcc,来解决这个问题。
如果你使用的是Ubuntu或Debian操作系统,你可以使用以下命令安装gcc编译器:
```
sudo apt-get update
sudo apt-get install build-essential
```
如果你使用的是CentOS或Red Hat Enterprise Linux操作系统,你可以使用以下命令安装gcc编译器:
```
sudo yum update
sudo yum groupinstall 'Development Tools'
```
安装完成后,再次运行configure命令即可。如果还有问题,请告诉我。
阅读全文