无法在Ubuntu 14.04上安装python pip

时间:2015-11-15 06:49:21

标签: python ubuntu pip

这是我用来安装python-pip的命令

sudo apt-get install python-pip

我收到以下错误

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
 python-pip : Depends: python-setuptools (>= 0.6c1) but it is not going to be installed
              Recommends: python-dev-all (>= 2.6) but it is not installable
E: Unable to correct problems, you have held broken packages.

我已经安装了最新版本的python-dev

当我尝试使用安装python-setuptools时 sudo apt-get install python-setuptools我收到以下错误

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
 python-setuptools : Depends: python-pkg-resources (= 3.3-1ubuntu1) but 3.3-1ubuntu2 is to be installed
E: Unable to correct problems, you have held broken packages.

解释如何解决错误并指导我安装python-pip的步骤。

6 个答案:

答案 0 :(得分:24)

安装python-pip时遇到同样的错误,以下命令解决了我的问题。

sudo apt-get install python-pkg-resources=3.3-1ubuntu1
sudo apt-get install python-setuptools

答案 1 :(得分:8)

https://bootstrap.pypa.io/get-pip.py

下载点子

然后运行以下命令(可能需要管理员访问权限):

python get-pip.py

这应该让你去。 如果再次卡住,请在此处阅读:http://pip.readthedocs.org/en/stable/installing/

答案 2 :(得分:2)

除了@seems推荐的解决方案之外,我还必须运行它。

apt-get update

(OR)

sudo apt-get install python-setuptools python-dev build-essential 
sudo easy_install pip 

答案 3 :(得分:1)

我有同样的问题,最终我放弃了使用:

sudo apt-get install python-pip

尝试之后的事情:

sudo apt-get install python-setuptools python-dev build-essential 

但没有运气。 所以我所做的就是:

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python get-pip.py

安心......

答案 4 :(得分:0)

我认为你应该尝试:

sudo apt-get install python-pkg-resources=3.3-1ubuntu1

然后:

sudo apt-get install python-pip python-dev build-essential

它肯定会解决您的问题。

答案 5 :(得分:0)

Jut运行此命令:

sudo apt-get update 

比安装python工具:

 sudo apt-get install python-pip
 sudo apt-get install python-dev
 sudo apt-get install build-essential

所有的软件包都会安装好,或者其中一些软件包可能会说它已经是最新的版本,很好