Unable to install python pip on Ubuntu 14.04

2020-03-17 07:00发布

This is the command I used to install python-pip

sudo apt-get install python-pip

I get the following error

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.

I already installed the latest version of python-dev

When i try to install python-setuptools using sudo apt-get install python-setuptools I get the below error

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.

Explain me how to resolve the error and guide me the steps to get python-pip installed.

6条回答
Evening l夕情丶
2楼-- · 2020-03-17 07:37

i have the same issue, and eventually i gave up by using:

sudo apt-get install python-pip

after tryings something like:

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

but with no luck. So all i did then was to:

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

peace of mind.....

查看更多
看我几分像从前
3楼-- · 2020-03-17 07:44

I think you should try:

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

And then:

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

It will definitely solve your issue.

查看更多
劫难
4楼-- · 2020-03-17 07:49

In addition to the solution that @seems recommended, I had to run this.

apt-get update

(OR)

sudo apt-get install python-setuptools python-dev build-essential 
sudo easy_install pip 
查看更多
Lonely孤独者°
5楼-- · 2020-03-17 07:52

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

Then run the following (which may require administrator access):

python get-pip.py

This should get you going. If you get stuck again, read here: http://pip.readthedocs.org/en/stable/installing/

查看更多
三岁会撩人
6楼-- · 2020-03-17 07:54

got the same error when I install python-pip, the following command solved my problem.

sudo apt-get install python-pkg-resources=3.3-1ubuntu1
sudo apt-get install python-setuptools
查看更多
Animai°情兽
7楼-- · 2020-03-17 08:00

Jut run this command :

sudo apt-get update 

than install python tools :

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

All the packages will get installed or some of them may say its already latest version, Thats fine

查看更多
登录 后发表回答