安装Python的坑

1.Ubuntu中不用yum,使用apt-get
2

[root@master ~]#./configure --prefix=/usr/local/python3.6

checking build system type… i686-pc-linux-gnu

checking host system type… i686-pc-linux-gnu
checking for --enable-universalsdk… no
checking for --with-universal-archs… 32-bit
checking MACHDEP… linux
checking for --without-gcc… no
checking for gcc… no
checking for cc… no
checking for cl.exe… no
configure: error: in /usr/local/src/pythonSoft/Python-3.3.4': configure: error: no acceptable C compiler found in $PATH Seeconfig.log’ for more details

由于本机缺少gcc编译环境

1、centos通过yum安装gcc编译环境:yum install -y gcc
2、Ubuntu通过yum安装gcc编译环境:apt-get install -y gcc

猜你喜欢

转载自blog.csdn.net/cross_SC/article/details/89358948