web-dev-qa-db-fra.com

L'installation de pip sur macOS ne fonctionne pas (plus)

J'ai suivi les instructions en ligne sur la façon d'installer pip sur macOS (par exemple this , this , et this ).

Tout semble simple, mais ça ne marche pas pour moi.

Ma python --version est 2.7.10.

Quand je lance Sudo easy_install pip Je reçois:

$ Sudo easy_install pip
Password:
Searching for pip
Reading http://pypi.python.org/simple/pip/
Couldn't find index page for 'pip' (maybe misspelled?)
Scanning index of all packages (this may take a while)
Reading http://pypi.python.org/simple/
No local packages or download links found for pip
error: Could not find suitable distribution for Requirement.parse('pip')

Avez-vous une idée de comment résoudre ou contourner ce problème?

10
meaning-matters

Vous pourriez avoir pip3 à la place. Utilisez-le pour mettre à niveau pip.

pip3 install --upgrade pip
5
Phillip Havea

Utiliser brew pour Mac

"installer python brew"

cela viendra avec pip et python2 et python3

les instructions pour contourner 2 python (si vous voulez) sont à https://pip.readthedocs.io/en/stable/installing/

sinon, ce sera juste "python3 <'programme'>"

Voici comment installer brew: https://www.howtogeek.com/211541/homebrew-for-os-x-easily-installs-desktop-apps-and-terminal-utilities/

5
Donovan Jenkins

easy_install est obsolète. Utilisez plutôt les commandes ci-dessous.

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

  2. python get-pip.py

Source

0
akshaynagpal