web-dev-qa-db-fra.com

sudo apt-get install python-pip échoue

Sudo apt-get install python-pip
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package python-pip

comment installer python-pip dans Ubuntu: 14.04?

27
Ravi _SS

python-pip se trouve dans les référentiels d'univers, utilisez donc les étapes ci-dessous:

Sudo apt-get install software-properties-common
Sudo apt-add-repository universe
Sudo apt-get update
Sudo apt-get install python-pip
51
A.B.

J'ai rencontré ce problème en essayant d'installer pip pour python2; e.i. Je voulais pip2. Ce qui a fonctionné pour moi a été ceci:

Sudo apt-get update && Sudo apt-get install python-pip

J'espère que ça aide quelqu'un.

14
HerrRobot