Python

如何在 Ubuntu 14.4 上將 Python 升級到 2.7.9?

  • January 22, 2022

Ubuntu 14.4 內置了 Python 2.7.6,但我想將它升級到 2.7.9(它具有我想要的安全功能)。

這甚至可能嗎?如果是這樣,如何實現?

您可以使用 pyenv:

git clone https://github.com/pyenv/pyenv.git ~/.pyenv
git clone https://github.com/pyenv/pyenv-virtualenv.git ~/.pyenv/plugins/pyenv-virtualenv

然後加

  #   for PyEnv
 export PYENV_ROOT="$HOME/.pyenv"
 export PATH="$HOME/.pyenv/bin:$PATH"
 export PATH="$HOME/.pyenv/shims:$PATH"
 eval "$(pyenv init -)"

到 .bash_profile 然後你可以看到你想要安裝或更新的 python 版本:

pyenv install --list

想要python 2.7.18?首先你安裝它:

pyenv install 2.7.18

之後,您可以使用它創建一個 virtualenv:

pyenv virtualenv 2.7.18

希望它可以幫助你。

引用自:https://serverfault.com/questions/669859