web-dev-qa-db-fra.com

pip3: commande non trouvée

Je souhaite installer Tensorflow en suivant ces instructions. https://www.tensorflow.org/versions/r0.12/get_started/os_setup#pip_installation

Mais quand j'essaye ce code sur le terminal, cela retourne une erreur.

$ Sudo pip3 install --upgrade $TF_BINARY_URL
Sudo: pip3: command not found

J'ai donc installé Homebrew et essayé de désinstaller et de réinstaller pip-3, mais cela n'a pas fonctionné.

MakotonoMacBook-ea:~ makotomiyazaki$ brew uninstall python3-pip
Error: No such keg: /usr/local/Cellar/python3-pip

MakotonoMacBook-ea:~ makotomiyazaki$ brew install python3-pip
Error: No available formula with the name "python3-pip" 
==> Searching for a previously deleted formula...
Warning: homebrew/core is shallow clone. To get complete history run:
  git -C "$(brew --repo homebrew/core)" fetch --unshallow

Que dois-je faire pour obtenir pip3? Mon système d’exploitation est macOS High Sierra et j’ai déjà installé Python 3.6.2.

EDIT: j'ai essayé

python3 -m pip

et ce qui est retourné était ceci.

The directory '/Users/makotomiyazaki/Library/Caches/pip/http' or its 
parent directory is not owned by the current user and the cache has 
been disabled. Please check the permissions and owner of that 
directory. If executing pip with Sudo, you may want Sudo's -H flag.
The directory '/Users/makotomiyazaki/Library/Caches/pip' or its parent 
directory is not owned by the current user and caching wheels has been 
disabled. check the permissions and owner of that directory. If 
executing pip with Sudo, you may want Sudo's -H flag.
You must give at least one requirement to install (see "pip help 
install")

J'ai aussi essayé quel pip3, mais je ne sais pas si cela a fonctionné ...

MakotonoMacBook-ea:~ makotomiyazaki$ Sudo which pip3 install --upgrade $TF_BINARY_URL
/usr/bin/install
5
Makoto Miyazaki

Vous auriez besoin d'installer pip3.

Sous Linux, la commande serait: Sudo apt install python3-pip

Sur Mac, en utilisant le brassage, premier brew install python3
Alors brew postinstall python3

Essayez d'appeler pip3 -V pour voir si cela a fonctionné.

24
Ali Nobari

son possible si vous avez déjà un python installé (pip) vous pouvez faire une mise à jour sur mac par 

brew upgrade python
0
Pravin

Écrire le chemin/répertoire entier, par exemple. (pour Windows) C:\Programs\Python\Python36-32\Scripts\pip3.exe install mypackage. Cela a bien fonctionné pour moi lorsque j'ai eu des problèmes avec pip.

0
3141