显示旧 Python 版本

显示旧 Python 版本

我的电脑以前安装的是 Python 2.7。我最近安装了 Python 3.2。但是当我从终端运行 Python 提示时,它仍然显示版本为 2.7.3。

dineshkumar@dineshkumar-desktop:~$ python
Python 2.7.3 (default, Apr 10 2013, 05:46:21)
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>

我如何将其更改为 3.2?

答案1

Python 3.2 将以 的形式提供python3.2,或者可能python3取决于您使用的 Ubuntu 版本。

Ubuntu 的很大一部分是用 Python 编写的,您无法更改链接python指向的版本,否则会破坏系统。您可以安装其他版本,但必须使用更长的名称来启动它们,例如python3.3) python2.6

这个答案更多细节。

默认的python版本是:

Lucid/11.10        2.6.5    3.1.2
Precise/12.04      2.7.3    3.2.3
Quantal/12.10      2.7.3    3.2.3
Raring/13.04       2.7.4    3.3.1

相关内容