linux笔记(python2.7与python3.5版本切换)

设置优先级

sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 100

sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 150

linux笔记(python2.7与python3.5版本切换)linux笔记(python2.7与python3.5版本切换)

python就切换为3.5了

使用以下命名查看优先级:

sudo update-alternatives --config python

linux笔记(python2.7与python3.5版本切换)linux笔记(python2.7与python3.5版本切换)

输入选择的指针编号切换当前python版本

更改了python版本,pip也会相应改变,如下图所示:

linux笔记(python2.7与python3.5版本切换)