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

原文地址:https://www.cnblogs.com/gcgc/p/10116009.html