centos7下安装python3.7.0以上版本时报错解决方案

错误1:无法编译

configure: error: in `/usr/local/src/pythonSoft/Python-3.3.4':
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details

解决方案:

由于本机缺少gcc编译环境,yum安装gcc编译环境:yum install -y gcc

错误2:
ModuleNotFoundError: No module named '_ctypes

解决方案:
3.7版本需要一个新的包libffi-devel,安装此包之后再次进行编译安装即可。yum install libffi-devel -y

你可能感兴趣的:(其他)