帮助中心 >  技术知识库 >  云服务器 >  服务器教程 >  宝塔安装nginx时报错:/configure: error: C compiler cc is not found

宝塔安装nginx时报错:/configure: error: C compiler cc is not found

2024-09-30 17:18:07 687

报错信息:
/configure: error: C compiler cc is not found

错误通常意味着系统中未安装 C 编译器

 

解决方法:

1. 安装 GCC(GNU Compiler Collection)

对于 Ubuntu/Debian:

sudo apt update

sudo apt install build-essential

 

对于 CentOS/RHEL:

sudo yum groupinstall 'Development Tools'

 

对于 Fedora:

sudo dnf groupinstall 'Development Tools'

 

2. 验证安装

安装完成后,运行以下命令以确认 C 编译器已正确安装:

cc --version

gcc --version

 

3. 重新运行配置

然后重新运行你的配置命令

提交成功!非常感谢您的反馈,我们会继续努力做到更好!

这条文档是否有帮助解决问题?

非常抱歉未能帮助到您。为了给您提供更好的服务,我们很需要您进一步的反馈信息:

在文档使用中是否遇到以下问题: