欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Ubuntu python版本切换

程序员文章站 2022-06-05 20:59:21
...

切换Python3为默认版本

sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 100
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 150

切换Python2为默认版本

sudo update-alternatives --config python

查看版本

python --version

相关标签: python