Redhat
在 RedHat/Centos 上安裝 Python 2.5
目前的 Python 版本是 2.4…
yum upgrade python
給
Could not find update match for python
我必須從原始碼安裝嗎?
是的,您需要從原始碼安裝,您可以使用以下內容:
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
./configure make make install
命令應該如下(根據 2.7 的 README)
./configure make make altinstall
請參閱README中的“安裝多個版本”部分。