如何在 ubuntu 14.10 上更新 Python 版本

如何在 ubuntu 14.10 上更新 Python 版本

我正在尝试弄清楚我安装了哪个版本的 Python,并将其升级到最新版本。

当我进入命令提示符并检查时,看起来我安装了旧版本的 python。

me@linuxdev:~$ python
Python 2.7.8 (default, Oct 20 2014, 15:05:19) 
[GCC 4.9.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> 

但是当我启动 Ubuntu 中的软件中心并检查“已安装”部分时,在“开发人员工具”下,我看到了“Python (v3.4)”的条目

所以我不太确定我运行的是哪个版本。我想

  1. 删除任何旧的未使用的 Python 版本。
  2. 最终得到一个版本,该版本应该是最新版本

谢谢。

编辑1

当我尝试从命令行重新安装 python 时发生的情况如下:

me@linuxdev:~$ sudo apt-get --reinstall python
E: Command line option --reinstall is not understood

答案1

Ubuntu 14.10默认安装有 Python 2.7.8(可作为pythonpython2python2.7)以及 Python 3.4.2(可作为python3和)。python3.4

由于许多程序都依赖于它们,因此您不能删除任何一个程序,否则会破坏您的系统。

答案2

要安装或者更新 Python,只需在终端中输入以下命令:

sudo apt-get install python

就是这样 :)

相关内容