在 Ubuntu 中切换 Python 的不同版本

在 Ubuntu 中切换 Python 的不同版本

我是 ubuntu 新手,我想将我的版本转移到 Python 3.4.1。

所以我运行了命令:

$ sudo update-alternatives --config python
update-alternatives: error: no alternatives for python

但然后我尝试运行命令:

$ sudo apt-get install python3.4
Reading package lists... Done
Building dependency tree       
Reading state information... Done
python3.4 is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 14 not upgraded.

我不知道如何在版本之间切换。请帮忙。

答案1

python 2.7并且python 3.4已经预安装在您的 Ubuntu 14.04 上。

  • python3在终端上运行命令以获取 python3 解释器。

  • python在终端上运行命令以获取 python2 解释器。

答案2

看一下 virtualenv 和 virtualenvwrapper。它们允许您使用一个版本的 python 设置“环境”。好处是您可以在该环境下使用 pip 安装软件包,然后切换到安装了不同软件包集的另一个环境 - 本质上运行不同版本的 python 而不会发生库冲突。

参考:http://docs.python-guide.org/en/latest/dev/virtualenvs/

相关内容