linux更改默认python版本

python --version

ls /usr/bin/python*

update-alternatives --list python

报错:
update-alternatives: error: no alternatives for python

增加可选择的,在Python中增加2.7,优先级设为1.(低)

update-alternatives --install /usr/bin/python python /usr/bin/python2.7 1

增加3.6,优先级设为2.(高)

update-alternatives --install /usr/bin/python python /usr/bin/python3.6 2

查看

update-alternatives --list python

再次查看Python版本

python --version

完全卸载某个python
不建议卸载Python3,卸载了影响系统自带软件。

sudo apt-get remove --purge python3.6

ref
https://www.cnblogs.com/yifugui/p/8649864.html

你可能感兴趣的:(Ubuntu)