centos7 configure: error: no acceptable C compiler found in $PATH
时间: 2023-11-24 19:41:17 浏览: 204
在CentOS7中,当出现"configure: error: no acceptable C compiler found in $PATH"错误消息时,意味着您需要安装C编译器。解决这个问题的方法是通过以下步骤安装C编译器:
1. 打开终端并以root用户身份登录。
2. 运行以下命令以安装C编译器:
```
yum groupinstall "Development Tools"
```
3. 等待安装完成后,再次运行配置命令。
如果您遇到"configure: error: Unable to use libpcre (libpcre check failed)"错误消息,您可以通过以下步骤解决:
1. 打开终端并以root用户身份登录。
2. 运行以下命令以安装libpcre库的开发文件:
```
yum install pcre-devel
```
3. 安装完成后,重新运行配置命令。
相关问题
configure: error: no acceptable C compiler found in $PATH 问题解决
这个错误提示是因为在你的系统中没有找到可用的 C 编译器。解决这个问题的方法是安装 C 编译器,常见的 C 编译器有 GCC、Clang 等,可以根据自己的需求选择。
如果你使用的是 Ubuntu 系统,可以通过以下命令安装 GCC:
```
sudo apt-get update
sudo apt-get install build-essential
```
如果你使用的是 CentOS 系统,可以通过以下命令安装 GCC:
```
sudo yum groupinstall 'Development Tools'
```
安装完成后,再次运行编译命令即可。如果你已经安装了 C 编译器,但是仍然出现这个错误提示,可能是因为编译器路径没有添加到 PATH 环境变量中,可以通过以下命令将编译器路径添加到 PATH 环境变量中:
```
export PATH=$PATH:/path/to/compiler
```
其中 /path/to/compiler 是编译器的安装路径。
升级curl 报错configure: error: no acceptable C compiler found in $PATH
该错误提示表明在升级curl时,系统找不到可接受的C编译器。解决此问题的方法是安装C编译器。以下是解决此问题的步骤:
1.对于Debian/Ubuntu系统,请使用以下命令安装C编译器:
```shell
sudo apt-get update
sudo apt-get install build-essential
```
2.对于CentOS/RHEL系统,请使用以下命令安装C编译器:
```shell
sudo yum groupinstall 'Development Tools'
```
3.安装完C编译器后,重新运行升级curl的命令即可。
阅读全文