在 RedHat/Centos 上安装 Python 2.5

在 RedHat/Centos 上安装 Python 2.5

当前 Python 版本是 2.4...

yum upgrade python

给予

Could not find update match for python

我必须从源代码安装吗?

答案1

是的,您需要从源代码安装,您可以使用以下命令:

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

这将以命令 python2.5 的形式安装 Python 2.5,因为 yum 和 CentOS 的其他部分需要旧版 Python 2.4,所以您将安装两个版本的 Python。

/usr/bin/python - 2.4.3
/usr/bin/python2.5 - 2.5

答案2

./configure 
make 
make install

命令如下(根据 2.7 的 README)

./configure 
make
make altinstall

请参阅“安装多个版本”部分自述文件

答案3

我在使用 ./configure 时遇到了这个错误

configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details.

因此,我安装了这些软件包

yum install gcc make

那么它就起作用了 ;)

相关内容