一般 在Ubuntu终端输入python 显示的是python2.7的,但是现在python3.x支持的很多了,而且我们总是要像python3进步的。
所以我这里将python3 设置为默认的python
使用的命令主要有这两个(alternatives机制):
sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 100
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 150
这时候再运行python 会显示出默认的python的版本已经是python3了。
注意:
如果想再切回python2.7 ,可以使用命令:
sudo update-alternatives --config python