2016-04-02 28 views
9

Voglio installare pip su OS X Così ho scaricato e installato Python 3.4, e successivamente, Installa pip utilizzando lo script fornito da Python Packaging Authority; ma quando corro pip ho ricevuto un comando non trovataInstalla pip su OS X

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 
+0

fa 'sudo PIP3 install lavoro awsebcli'? – snakecharmerb

+2

Domanda duplicata di http://stackoverflow.com/questions/17271319/installing-pip-on-mac-os-x – iSkore

+1

Soluzione senza utilizzo di brew: sudo easy_install pip – vishal

risposta

3

Boh, ma this crossbar installation tutorial sembra coprire completamente il vostro argomento.

Plus: Si installa il proprio pip localmente. Prova bin/pip dall'interno della cartella in cui hai eseguito il comando curl.

+0

Grazie. Ha funzionato per me :) – Woppi

15

Il modo più semplice che ho trovato era usare home-brew, installa anche tutti i python e pip di base. Ma sentiti libero di usare anche i macport.

brew install python 

ho usato le risposte dal post, se avete bisogno di più aiuto: How do I install pip on macOS or OS X?