centOS升级python2至python3过程中遇到configure: error: no acceptable C compiler found in $PATH

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centOS升级python2至python3过程中遇到configure: error: no acceptable C compiler found in $PATH相关的知识,希望对你有一定的参考价值。

今天安装了一个centos 6.9  ,查看默认python版本是2.6,所以准备升级,按着以前在ubuntu上的升级步骤:

(1)  wget http://www.python.org/ftp/python/3.3.0/Python-3.3.0.tgz

(2)  tar -xzvf Python-3.3.0.tgz

(3)  mkdir /usr/local/python

(4) ./configure --prefix=/usr/local/python3

   在第四步出现了一个提示:

 提示:configure: error: no acceptable C compiler found in $PATH

    原来是缺少C编译器,需要安装GCC套件,于是采用如下命令安装,

(5)  yum -y install gcc

    顺利下载安装成功,重复操作第四步命令:  ./configure --prefix=/usr/local/python3  顺利配置成功

(6)  make 

    make install

(7)  mv /usr/bin/python /usr/bin/python_old2

(8)  ln -s /usr/local/python3/bin/python3/usr/bin/python


本文出自 “豆爸的博客” 博客,请务必保留此出处http://imlearner.blog.51cto.com/9615100/1978523

以上是关于centOS升级python2至python3过程中遇到configure: error: no acceptable C compiler found in $PATH的主要内容,如果未能解决你的问题,请参考以下文章

python2.7.X 升级至Python3.6.X

Linux系统中的python2.x升级至python3

CentOS7 升级 python3 过程及注意

python2.7.X 升级至Python3.6.X

CentOS6.5自带Python2.6.6升级至Python2.7

centos python2升级为python3 升级旧版本django