查看现有 Python 的版本
1 | ubuntu@user~$:python --version |
需要删除原有的 Python 连接文件
1 | $ ubuntu@user~:rm /user/bin/python |
然后建立指向 Python3.5 的软连接,然后把 Python2.7 指向 Python2
1 | $ ubuntu@user~:ln -s /usr/bin/python3.5 /usr/bin/python |
现在 Python 的默认版本就是 Python3 了,然后,你还要安装 pip
1 | sudo apt-get install python3-pip |
问题
pip: no module named _internal
解决办法,重新安装:
1 | wget https://bootstrap.pypa.io/get-pip.py --no-check-certificate |
- 升级 pip 后出错:
ImportError: cannot import name 'main'
解决办法:
1 | sudo python -m pip uninstall pip |