Ubuntu1804下如何切换python版本
目录
1 如何查看当前python版本
2 如何配置默认python版本
2.1 配置python2为默认版本
2.2 配置python3为默认版本
3 小结
1 如何查看当前python版本
python --version
2 如何配置默认python版本
2.1 配置python2为默认版本
sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 1
也可以用过以下命令在弹出的命令行选择界面进行设置:文章来源:https://www.toymoban.com/news/detail-801505.html
sudo update-alternatives --config python
输入命令后会弹出类似先择界面,按提示输入对应的数字进行选择:文章来源地址https://www.toymoban.com/news/detail-801505.html
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 <enter> to keep the current choice[*], or type selection number:
2.2 配置python3为默认版本
3 小结
到了这里,关于Ubuntu1804下如何切换python版本的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!