checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking for python3.8... no
checking for python3... no
checking for python... python
checking for --enable-universalsdk... no
checking for --with-universal-archs... no
checking MACHDEP... "linux"
checking for gcc... no
checking for cc... no
checking for cl.exe... no
configure: error: in `/usr/local/Python-3.8.0':
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details
出现该问题是因为系统命令cc不存在,安装gcc就可以。
yum install -y gcc
在尝试安装Python 3.8.0时遇到配置错误,原因是系统中没有找到合适的C编译器。解决方案是通过运行'yum install -y gcc'来安装gcc,从而解决配置过程中找不到C compiler的错误。详细信息可在`config.log`文件中查看。
4298

被折叠的 条评论
为什么被折叠?



