我是靠谱客的博主 眯眯眼导师,最近开发中收集的这篇文章主要介绍如何在Ubuntu20.10上安装python2,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

如何在Ubuntu20.10上安装python2

自Unbutu20.04,Python2已移除,默认安装Python3,但是若需使用Python2的遗留程序,任可以安装配置Python2。

1、安装Python2:

$ sudo apt install python2

2、检查Python版本:

$ python -V
Python 2.7.18
$ python2 -V
Python 2.7.18
$ python3 -V
Python 3.8.6

3、检查可用的Python版本:

$ ls /usr/bin/python*
/usr/bin/python     /usr/bin/python3           /usr/bin/python3-config
/usr/bin/python2    /usr/bin/python3.8         /usr/bin/python3-futurize
/usr/bin/python2.7  /usr/bin/python3.8-config  /usr/bin/python3-pasteurize

4、查看是否配置了Python的替代方案:

$ sudo update-alternatives --list python
update-alternatives: error: no alternatives for python

5、设置替代方案:

$ sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 1
$ sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 2

6、确认两个备选方案都可以使用,选择可选的Python版本:

$ sudo update-alternatives --config python
There are 2 choices for the alternative python (providing /usr/bin/python).

  Selection    Path              Priority   Status
------------------------------------------------------------
* 0            /usr/bin/python3   2         auto mode
  1            /usr/bin/python2   1         manual mode
  2            /usr/bin/python3   2         manual mode

Press <enter> to keep the current choice[*], or type selection number: 1
update-alternatives: using /usr/bin/python2 to provide /usr/bin/python (python) in manual mode

7、检查Python版本:

$ python -V
Python 2.7.18

最后

以上就是眯眯眼导师为你收集整理的如何在Ubuntu20.10上安装python2的全部内容,希望文章能够帮你解决如何在Ubuntu20.10上安装python2所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(41)

评论列表共有 0 条评论

立即
投稿
返回
顶部