更改Ubuntu下默认Python版本
2020-12-13 16:26
标签:ror 选中 ubuntu upd 移除 bash 需要 center style 此时查看版本已经是python 3.6 更改Ubuntu下默认Python版本 标签:ror 选中 ubuntu upd 移除 bash 需要 center style 原文地址:https://www.cnblogs.com/zhx-blog/p/11619750.html更改Ubuntu下默认Python版本
首先查看系统内有哪些版本的Python
ls /usr/bin/python
查看当前python版本
python --version
基于用户修改默认版本
alias python=‘/usr/bin/python3.6‘
. ~/.bashrc
在系统级修改 Python 版本
update-alternatives --list python
update-alternatives: error: no alternatives for python
update-alternatives --install /usr/bin/python python /usr/bin/python2.7
update-alternatives --install /usr/bin/python python /usr/bin/python3.6
python --version
update-alternatives --list python
/usr/bin/python2.7
/usr/bin/python3.6
update-alternatives --config python
移除替代版本
update-alternatives --remove python /usr/bin/python2.7
rm -rf /data/logs
ln -s /temp/logs /data/logs