web-dev-qa-db-ja.com

OS Xにpipをインストールする

OS Xにpipをインストールしたいので、Python 3.4をダウンロードしてインストールし、その後、Python Packaging Authority;しかし、pipを実行するとcommand not found

MacBook-Pro-de-paquirrin:Home paquirrin$ Sudo curl -O https://bootstrap.pypa.io/get-pip.py
Password:
Sorry, try again.
Password:
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100 1487k  100 1487k    0     0   783k      0  0:00:01  0:00:01 --:--:--  783k
MacBook-Pro-de-paquirrin:Home paquirrin$ Sudo python3 get-pip.py
The directory '/Users/paquirrin/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/paquirrin/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.
Collecting pip
  Downloading pip-8.1.1-py2.py3-none-any.whl (1.2MB)
    100% |████████████████████████████████| 1.2MB 718kB/s 
Collecting wheel
  Downloading wheel-0.29.0-py2.py3-none-any.whl (66kB)
    100% |████████████████████████████████| 71kB 1.6MB/s 
Installing collected packages: pip, wheel
  Found existing installation: pip 6.0.8
    Uninstalling pip-6.0.8:
      Successfully uninstalled pip-6.0.8
Successfully installed pip-8.1.1 wheel-0.29.0
MacBook-Pro-de-paquirrin:Home paquirrin$ Sudo pip install awsebcli
Sudo: pip: command not found

Dunno、しかし このクロスバーのインストールチュートリアル はあなたのトピックを完全にカバーしているようです。

Plus:pipをローカルにインストールします。 bin/pipcurlコマンドを実行したフォルダー内から。

8
ansi_lumen

私が見つけた最も簡単な方法はhome-brewを使用することで、すべての基本的なpythonとpipもインストールします。しかしmacportsも使用してください。

brew install python

さらにヘルプが必要な場合は、投稿の回答を使用しました: macOSまたはOS Xにpipをインストールする方法

18
Siddharth Wagle