Python 2已经从ubuntu20.04中移除,但是如果您有需要旧Python的遗留程序,仍然可以安装和配置。
步骤1:安装Python 2
SSH到您的Ubuntu 20.04服务器并使用apt安装Python 2。
$ sudo apt install python2
检查Python版本。
$ python2 -V
Python 2.7.17
步骤2:检查可用的Python版本
检查系统上可用的Python版本。
$ ls /usr/bin/python*
/usr/bin/python2 /usr/bin/python2.7 /usr/bin/python3 /usr/bin/python3.8
查看是否配置了Python替代方案。
$ sudo update-alternatives --list python
update-alternatives: error: no alternatives for python
步骤3:设置替代版本
对于本例,我们将设置两个Python替代:Python2和Python3。
$ sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 1
$ sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 2
确认两个备选方案都可以使用:
$ sudo update-alternatives --list python
/usr/bin/python2
/usr/bin/python3
选择可选的Python版本。