Ubuntu--切换默认Python版本

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/lwplwf/article/details/85098691

可以利用alternatives机制更改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

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/lwplwf/article/details/85098691
今日推荐