web-dev-qa-db-fra.com

Impossible d'installer python pip sur Ubuntu 14.04

C'est la commande que j'ai utilisée pour installer python-pip

Sudo apt-get install python-pip

Je reçois l'erreur suivante

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.

J'ai déjà installé la dernière version de python-dev

Quand j'essaie d'installer python-setuptools en utilisant Sudo apt-get install python-setuptools, j'obtiens l'erreur ci-dessous. 

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.

Expliquez-moi comment résoudre l'erreur et guidez-moi pour que python-pip soit installé.

7
krishna

j'ai eu la même erreur quand j'ai installé python-pip, la commande suivante a résolu mon problème.

Sudo apt-get install python-pkg-resources=3.3-1ubuntu1
Sudo apt-get install python-setuptools
24
seems

télécharger le pip depuis https://bootstrap.pypa.io/get-pip.py

Ensuite, exécutez ce qui suit (ce qui peut nécessiter un accès administrateur):

python get-pip.py

Cela devrait vous faire avancer. Si vous êtes à nouveau bloqué, lisez ce qui suit: http://pip.readthedocs.org/fr/stable/installing/

8
Amnon

En plus de la solution recommandée par @sem, je devais l'exécuter.

apt-get update

(OU)

Sudo apt-get install python-setuptools python-dev build-essential 
Sudo easy_install pip 
2
SuperNova

j'ai le même problème, et finalement j'ai abandonné en utilisant:

Sudo apt-get install python-pip

après avoir essayé quelque chose comme:

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

mais sans chance. Je n’ai donc fait que:

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

tranquillité d'esprit.....

1
Student Jack

Je pense que tu devrais essayer:

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

Et alors:

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

Cela résoudra définitivement votre problème. 

0
Nikhil Pandey

Exécuter cette commande:

Sudo apt-get update 

que d’installer les outils python:

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

Tous les paquets seront installés ou certains d'entre eux diront que c'est déjà la dernière version, c'est bien

0
Faheem