升级 Python

升级 Python

根据Python 官方网站,当前的 Python 2 版本是2.7.10

在我的计算机上,我有2.7.6

$ python
Python 2.7.6 (default, Jun 22 2015, 18:00:18) 
[GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> exit()

我想我应该更新为2.7.10使用apt-get。但是,这不起作用:

$ sudo apt-get install python2.7
Reading package lists... Done
Building dependency tree       
Reading state information... Done
python2.7 is already the newest version.

apt-get告诉我我已经拥有最新版本。

是什么赋予了?

答案1

与其他应用程序(例如firefox或 )不同,python 软件包在 Ubuntu 中不会不断更新chromium-browser。这并不是说该软件包不会获得安全更新;但我认为,如果 14.04 LTS 仍在运行 2.7.6 而不是 2.7.10,那么可能不会有任何重大的安全问题。

如果您跑步apt-cache showpkg python2.7或者apt-get changelog python2.7您可以获得更多信息。

基本上,您需要源安装 python(这非常简单)。我也找到了以下 PPA:ppa:fkrull/deadsnakes但我不能保证。

相关内容