Ubuntu使用Python3版本,去除Python2.7

步骤一:去除Python2.7版本

#删除Python2.7
apt-get remove python2.7
#卸载Python2.7以及其依赖包
apt-get remove --auto-remove python2.7  
#彻底去除Python2.7
apt-get purge python2.7 or sudo apt-get purge --auto-remove python2.7 

#Python3.6转为默认Python
ln -sv /usr/bin/python3.6 /usr/bin/python

#安装pip插件
 apt install python-pip

步骤二:

使用PIP命令安装其余的组件

你可能感兴趣的:(python)