如何在 ubuntu 13.04 中安装 python 3.2

如何在 ubuntu 13.04 中安装 python 3.2

我出于开发目的需要 python 3.2,但新 ubuntu 13.04 附带了 python 3.3。

在 ubuntu 中安装旧版本的 Python 有没有什么最佳实践?

谢谢

答案1

使用死蛇 PPA,其中包括为一系列 Ubuntu 版本打包的一系列 Python 版本,其中包括用于 raring 的 3.2 版。

sudo apt-add-repository ppa:fkrull/deadsnakes
sudo apt-get update
sudo apt-get install python3.2

答案2

下载并编译Python(使用终端):

wget http://python.org/ftp/python/3.3.0/Python-3.3.0.tar.bz2
tar jxf ./Python-3.3.0.tar.bz2
cd ./Python-3.3.0
./configure --prefix=/opt/python3.3
make && sudo make install

来源:询问Ubuntu

答案3

我遇到的其他选择是pyenvpythonz- 它们都将为您构建自定义版本的 python(包括 PyPy 和 Jython),并允许您更改在终端中使用的 python。

我自己也没有尝试过,所以无法推荐。

相关内容