如何更新到 Python 2.7?

如何更新到 Python 2.7?

我正在使用 Ubuntu 10.10,它默认安装了 Python 2.6,但我想要使用的某些应用程序需要 2.7,所以我想更新它。

我该如何做这件事?

答案1

它已经在官方存储库中:http://packages.ubuntu.com/maverick/python2.7

sudo apt-get install python2.7

然后执行python2.7

PS 对 ubuntu 10.10 的支持将于 2012 年 4 月结束:https://wiki.ubuntu.com/Releases

答案2

死蛇 PPA对新旧版本的 Python 都有帮助。

Lucid 通过 Precise 提供 2.x 和 3.x 版本支持。由于您正在寻找 10.10,因此直接链接为:

https://launchpad.net/~fkrull/+archive/deadsnakes?field.series_filter=maverick

答案3

  1. 更新 Ubuntu 10.10 源信用)。

    因为10.10 不再受支持

    sudo sed -i -e 's/archive.ubuntu.com\|security.ubuntu.com/old-releases.ubuntu.com/g' /etc/apt/sources.list
    sudo apt-get update
    
  2. 安装add-apt-repository命令信用):

    这可以防止您sudo: add-apt-repository: command not found在下一步中出现错误。

    sudo apt-get install python-software-properties
    
  3. 安装死蛇 PPA信用):

    sudo add-apt-repository ppa:fkrull/deadsnakes
    sudo apt-get update
    
  4. 安装 Python 2.7

    sudo apt-get install python2.7
    
  5. 利润!

    $ python2.7 --version
    Python 2.7.4
    


编辑:您也可以通过这种方式安装 Python 3.3。只需将步骤 4 替换为:

sudo apt-get install python3.3

同样适用于 Python 2.4、2.5、3.1、3.2 等。

相关内容