咨询热线:4006-75-4006

售前:9:00-23:30    备案:9:00-18:00    技术:7*24h

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

2024-09-30 17:18:07 1122次

报错信息:
/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. 重新运行配置

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

首页
最新活动
个人中心