VPS-server是Python 2.6版本,我安装了Python 3.5.2版本。
当我尝试使用帮助pip
安装一些软件包时,我遇到了错误。
在安装包期间:
DEPRECATION: Python 2.6 is no longer supported by the Python core team, please upgrade your Python. A future version of pip will drop support for Python 2.6
版本:
# Python -V
# Python 3.5.2
# pip -V
# pip 8.1.2 from /usr/lib/python2.6/site-packages/pip-8.1.2-py2.6.egg (python 2.6)
# cat /etc/*-release
# CentOS release 6.8 (Final)
如何从python 3.5改变pip的路径?
答案 0 :(得分:1)
答案 1 :(得分:0)
手动升级pip一次解决了这个问题。 Update pip Documentation
如果您使用从python.org下载的Python 2> = 2.7.9或Python 3> = 3.4已经安装了pip,但您需要升级pip。
在Linux或OS X上:
pip install -U pip
在Windows [5]上:
python -m pip install -U pip