nginx报错:./configure: error: C compiler cc is not found,
时间: 2023-08-02 07:05:54 浏览: 373
ccs调试中报错
这个错误提示是因为编译 Nginx 时找不到 C 编译器。你需要安装一个 C 编译器,比如 GCC 或 Clang。
如果你使用的是 Ubuntu 或 Debian 等基于 apt 的系统,可以使用以下命令安装 GCC:
```
sudo apt-get update
sudo apt-get install build-essential
```
如果你使用的是 CentOS 或 Fedora 等基于 yum 的系统,可以使用以下命令安装 GCC:
```
sudo yum groupinstall "Development Tools"
```
安装完 C 编译器后,重新运行 Nginx 的 configure 脚本即可。
阅读全文