作为目前在服务器环境中应用最广的 Ubuntu 版本, 12.04 和 14.04 里自带的 Python 2.7 的版本都太旧,尤其是缺乏对 SSL/TLS 的 SNI 功能的支持,在一些和 SSL 有关的应用中会很不方便,而且还会导致 InsecurePlatformWarning 报警。
可以通过导入下面的这个 PPA 在 Ubuntu LTS 中安装最新版本的 Python 2.7 来解决这个问题。 SNI 支持在 2.7.9 里被 backport 了。
https://launchpad.net/~fkrull/+archive/ubuntu/deadsnakes-python2.7
导入步骤:
sudo add-apt-repository -y ppa:fkrull/deadsnakes-python2.7
sudo apt-get update
sudo apt-get install python2.7
然后你就可以在 Ubuntu 12.04/14.04 中用上 Python 2.7.11 了。
如果你遇到 add-apt-repository: command not found
这个错误,那么请先安装:
sudo apt-get install -y python-software-properties
1
halfcrazy 2016-03-02 00:37:54 +08:00
感觉用 pyenv 好些,不用变动系统本身的
|