Ubuntu16.04切换python3和python2

 

切换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

切换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为默认版本:

扫描二维码关注公众号,回复: 4493252 查看本文章

sudo update-alternatives --config python

猜你喜欢

转载自www.cnblogs.com/gcgc/p/10116009.html