EoghanM Asked: 2009-06-12 08:05:07 +0800 CST2009-06-12 08:05:07 +0800 CST 2009-06-12 08:05:07 +0800 CST 在 RedHat/Centos 上安装 Python 2.5 772 当前的 Python 版本是 2.4... yum upgrade python 给 Could not find update match for python 我必须从源代码安装吗? redhat python 3 个回答 Voted timmy 2010-08-07T04:09:49+08:002010-08-07T04:09:49+08:00 ./configure make make install 命令应该如下(根据 2.7 的 README) ./configure make make altinstall 请参阅README中的“安装多个版本”部分。 Best Answer user9206 2009-06-12T08:39:10+08:002009-06-12T08:39:10+08:00 是的,您需要从源代码安装,您可以使用以下内容: wget http://www.python.org/ftp/python/2.5.2/Python-2.5.2.tgz tar fxz Python-2.5.2.tgz cd Python-2.5.2 ./configure make make install 这将安装 Python 2.5 作为命令 python2.5,因为 yum 和 CentOS 的其他部分需要旧的 Python 2.4,因此您将安装两个版本的 Python。 /usr/bin/python - 2.4.3 /usr/bin/python2.5 - 2.5 coto 2010-02-21T10:58:54+08:002010-02-21T10:58:54+08:00 我在 ./configure 中遇到了这个错误 configure: error: no acceptable C compiler found in $PATH See `config.log' for more details. 所以,我安装了这些包 yum install gcc make 然后,它起作用了;)
命令应该如下(根据 2.7 的 README)
请参阅README中的“安装多个版本”部分。
是的,您需要从源代码安装,您可以使用以下内容:
这将安装 Python 2.5 作为命令 python2.5,因为 yum 和 CentOS 的其他部分需要旧的 Python 2.4,因此您将安装两个版本的 Python。
我在 ./configure 中遇到了这个错误
所以,我安装了这些包
然后,它起作用了;)