web-dev-qa-db-ja.com

pip3:コマンドが見つかりません

この指示に従ってTensorflowをインストールします。 https://www.tensorflow.org/versions/r0.12/get_started/os_setup#pip_installation

しかし、端末でこのコードを試すと、エラーが返されます。

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

そこでHomebrewをインストールし、pip-3をアンインストールして再インストールしようとしましたが、うまくいきませんでした。

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

Pip3を取得するにはどうすればよいですか?私のOSはmacOS High Sierraであり、python 3.6.2が既にインストールされています。

編集:試した

python3 -m pip

返されたのはこれでした。

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")

また、どのpip3を試しましたが、うまくいったかどうかはわかりません...

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

Pip3をインストールする必要があります。

Linuxでは、コマンドはSudo apt install python3-pipになります

Macでは、brewを使用して、最初にbrew install python3
次にbrew postinstall python3

pip3 -Vを呼び出して、動作するかどうかを確認してください。

45
Ali Nobari

既にpythonがインストールされている場合(pip)、Macでアップグレードを実行できます。

brew upgrade python
0
Pravin

他の方法が機能しない場合は、これを試してください:

  1. python3をインストールする
  2. リンクを作成する-Pythonを上書きする
  3. ポストインストールpython3を作成する
0
See

パス/ディレクトリ全体を書く。 (Windowsの場合)C:\Programs\Python\Python36-32\Scripts\pip3.exe install mypackage。これは、pipで問題が発生したときにうまく機能しました。

0
3141