ubuntu16.04 下 python2/3版本互相切换,指定python3(.5 .6)默认优先版本

https://www.cnblogs.com/eczhou/p/10245331.html

安装

sudo add-apt-repository ppa:jonathonf/python-3.6
sudo apt-get update
sudo apt-get install python3.6

配置只输入python3时就默认使用3.6版本

也可使用上面链接里说明的方法

sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.5 1

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

sudo update-alternatives --config python3

sudo python3 -V

设置pip:
 

sudo apt-get install python3-pip    # Python3

sudo apt-get install python-pip      # Python2

 

你可能感兴趣的:(Python)