安装Python 3.5.2,但是pip for Python 2.6

时间:2016-09-13 12:20:10

标签: python centos pip

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的路径?

2 个答案:

答案 0 :(得分:1)

如果您还没有进入服务器,可以使用get-pip文件:

安装python后,通常安装了pip,你可以通过pip3命令运行

例如,你可以使用:

pip3 install netaddr

答案 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