Ubuntu1804下如何切换python版本

Ubuntu1804下如何切换python版本


目录

1 如何查看当前python版本
2 如何配置默认python版本
  2.1 配置python2为默认版本
  2.2 配置python3为默认版本
3 小结


1 如何查看当前python版本

    可以用过以下命令,查看当前python默认版本:
python --version

2 如何配置默认python版本

2.1 配置python2为默认版本

    可以用过以下命令进行设置:
sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 1

    也可以用过以下命令在弹出的命令行选择界面进行设置:

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   1         auto mode
  1            /usr/bin/python2   1         manual mode
* 2            /usr/bin/python3   1         manual mode

Press  to keep the current choice[*], or type selection number: 

2.2 配置python3为默认版本

    操作方式同上。

3 小结

    这种设置方式只适用于当前用户,如果其他用户也想设置默认Python版本,他们需要重复上述步骤。

你可能感兴趣的:(学习日记,python,切换python版本,设置默认python版本)