卸载 python 2.7.6 并安装 2.6

卸载 python 2.7.6 并安装 2.6

我需要卸载 python 2.7.6 并安装 2.6。我该如何操作呢?哪个 python 命令给出(/usr/bin/python)。我的环境是 ubuntu 14.04。

答案1

您可以尝试:

apt-get 删除 python2.7

不要删除 Python 2.7,而是同时使用两者

插入以下内容/etc/apt/sources.list

deb http://ppa.launchpad.net/fkrull/deadsnakes/ubuntu trusty main 
deb-src http://ppa.launchpad.net/fkrull/deadsnakes/ubuntu trusty main

或者使用您选择的其他 PPA。然后运行:

apt-get update
apt-get install python2.6

免责声明:该 PPA 只是我在 Google 上找到的,不提供任何保证。

相关内容