当前位置:   article > 正文

Ubuntu22.04 上安装 python2 并设置为默认方式_ubuntu 22.04 安装 python 2

ubuntu 22.04 安装 python 2

1. 安装 Python2

sudo apt install python2

 安装完成后检查 Python 的版本,在这里我安装的 Python版本为 2.7.18:

  1. python2 -V
  2. Python 2.7.18

一般 Ubuntu 是自带 python3 版本的: 

  1. python3 -V
  2. Python 3.8.5

 2. 设置默认方式(替代版本)

然后使用如下命令设置默认方式(替代版本):

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

选用可选的 Python 版本:

  1. sudo update-alternatives --config python
  2. There are 2 choices for the alternative python (providing /usr/bin/python).
  3. Selection Path Priority Status
  4. ------------------------------------------------------------
  5. * 0 /usr/bin/python3 2 auto mode
  6. 1 /usr/bin/python2 1 manual mode
  7. 2 /usr/bin/python3 2 manual mode
  8. Press to keep the current choice[*], or type selection number: 1

 最后,你可以检查你的 Python 版本来确认是否设置成功:

  1. python -V
  2. Python 2.7.18

 

 

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/71199?site
推荐阅读
相关标签
  

闽ICP备14008679号