J'ai installé python en utilisant homebrew et je ne peux pas appeler pip depuis bash. J'ai essayé de modifier mon .bash_profile pour inclure / usr / local / bin / python et / usr local / share / python en vain.
Lorsque j'utilise la commande bash:
find / -name 'pip'
Les seuls résultats que j'obtiens sont:
/Library/Python/2.7/site-packages/pip-1.5.6-py2.7.egg/pip
/Users/Ivan/Library/Caches/pip
/Users/Ivan/Library/Logs/pip
/usr/local/Cellar/python/2.7.9/libexec/pip
/usr/local/Cellar/python/2.7.9/libexec/pip/pip
/usr/local/lib/python2.7/site-packages/pip
Aucun n'est un exécutable.
Je ne sais pas vraiment où pointer mon $ PATH car je ne trouve pas l'exécutable pip. Quand j'ouvre
/usr/local/lib/python2.7/site-packages/pip
ou
/usr/local/Cellar/python/2.7.9/libexec/pip/pip
Je trouve les fichiers suivants:
__init__.py commands operations
__init__.pyc compat pep425tags.py
__main__.py download.py pep425tags.pyc
__main__.pyc download.pyc req
_vendor exceptions.py status_codes.py
basecommand.py exceptions.pyc status_codes.pyc
basecommand.pyc index.py utils
baseparser.py index.pyc vcs
baseparser.pyc locations.py wheel.py
cmdoptions.py locations.pyc wheel.pyc
cmdoptions.pyc models
Aucun n'est un exécutable.
J'apprécierais l'aide de toute personne ayant plus d'expérience que moi.
Edit: j'ai essayé les étapes suggérées par Marco:
Voici les résultats des étapes:
echo $ PATH affiche quelques répertoires: / usr / local / bin: / usr / local / mysql / bin: / usr / bin: / bin: / usr / sbin: / sbin: / usr / local / bin: / usr / texbin: / opt / X11 / bin: / usr / local / mysql / bin
qui -a python renvoie: / usr / local / bin / python / usr / local / bin / python
rien n'est retourné pour lequel -a pip
- quel python renvoie: / usr / local / bin / python
rien n'est retourné pour quel pip
- ls -l $ (quel python) renvoie un seul répertoire: lrwxr-xr-x 1 Ivan admin 33 17 mai 08:59 / usr / local / bin / python -> ../Cellar/python/2.7.9/bin/ python
ls -l $ (quel pip) renvoie plusieurs, y compris les fichiers python que j'ai montrés dans mon post d'origine