如何安装 python 2.5.4?

如何安装 python 2.5.4?

我在笔记本电脑上安装了 Ubuntu 12.10,现在我想将 Python 2.5.4 用于教育目的。有人能帮我提供分步说明吗...我还需要 2.5.4 的 IDLE。

答案1

我用https://launchpad.net/~fkrull/+archive/deadsnakes适用于所有旧版 Python 版本。

它似乎得到了维护并且还添加了新版本。

只需执行以下操作:

sudo apt-add-repository ppa:fkrull/deadsnakes
sudo apt-get update
sudo apt-get install python2.5

答案2

这将安装 2.5.4来源

sudo apt-get install build-essential gcc
cd Downloads
wget https://www.python.org/ftp/python/2.5.4/Python-2.5.4.tgz
tar -xvzf Python-2.5.4.tgz
cd Python-2.5.4
./configure --prefix=/usr/local/python2.5
make
make test
sudo checkinstall --pkgname python2.5 --provides python2.5 

笔记:如果编译因错误Modules/getbuildinfo.o 而停止Modules/getbuildinfo.c ---> 像这样重新执行配置命令SVNVERSION=not-found ./configure --prefix=[your/path/preference]

如果你想替换你的标准python:

sudo ln -s /usr/local/python2.5/bin/python /usr/bin/python2.5 </pre>

python2.5您可以通过发行而不是 来使用此版本python

相关内容