Ubutnu python2 and python3 switching

python -V
#查看默认版本  Python 2.7.17
python3 -V
#查看电脑3的版本  Python 3.6.9
sudo update-alternatives --install /usr/bin/python python /usr/bin/python2.7 1
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.6 2
#设置两个版本的编号1/2
sudo update-alternatives --config python
#选择要切换的版本编号

Guess you like

Origin blog.csdn.net/weixin_68647501/article/details/132690394