解决 configure: error: no acceptable C compiler found
Lasted 2020-01-29 16:33:21
Linux 环境中源码安装 Python 3.8 时报错误如下:
configure: error: no acceptable C compiler found in $PATH
因为系统中没有 C 编译器。解决方法适用安装所有软件出现如上信息的错误。
解决方法:
1. 安装 C 编译器
下面的命令执行一条即可,第一条命令会安装其他工具,不建议使用。第二条命令只安装 gcc 编译器。第三条命令安装 C 和 C++ 编译器。
安装开发工具包
yum groupinstall "Development Tools"
安装 C 编译器
yum install gcc
安装 C 和 C++ 编译器
yum install gcc gcc-c++