ubuntu中python2与python3的默认启动切换
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu中python2与python3的默认启动切换相关的知识,希望对你有一定的参考价值。
方法摘自SegmentFault:
方法一:
echo alias python=python3 >> ~/.bashrc && source ~/.bashrc
相当于先打开gedit ~/.bashrc 修改alias python=python3这行内容
方法二(使用update-alternatives来修改priority):
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
按照提示输入选择数字回车即可。
这样你甚至可以将自己喜欢的任意版本python安装到任意位置,然后使用update-alternatives
将其设置为系统默认python。
以上是关于ubuntu中python2与python3的默认启动切换的主要内容,如果未能解决你的问题,请参考以下文章
ubuntu上怎么设置默认python命令是执行python3而不是python2
ubuntu16.04下python2python3环境选择与python升级