web-dev-qa-db-fra.com

Comment installer pip sur Arch linux?

Je dégageai ceci: python-pip-1.5.6-2-any.pkg.tar.xz

tar -xf python-pip-1.5.6-2-any.pkg.tar.xz

et il a créé un dossier usr avec des sous-dossiers bin, lib et share

l'intérieur de bin est pip, pip3, et pip3.4

Comment diable suis-je supposé exécuter makepkg?

Je ne sais pas comment installer ça.

27
3jaz

pacman -S python-pip devrait également fonctionner.

La version actuelle dans le référentiel est 1.5.6-2

REMARQUE: pour python 2.7, vous devez installer python2-pip au lieu de python-pip.

63
Imanol Luengo

Est-ce que l'instruction ici fonctionne pour vous? https://pip.pypa.io/en/latest/installing.html

donc en gros:

curl -O https://bootstrap.pypa.io/get-pip.py
python get-pip.py
9
Xuan