Quand j'ai essayé de connecter python à mysql, j'ai trouvé que j'avais besoin de pip.
>curl -kL https://raw.github.com/pypa/pip/master/contrib/get-pip.py | python
Même si tu frappes
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
100 260 100 260 0 0 674 0 --:--:-- --:--:-- --:--:-- 674
You're using an outdated location for the get-pip.py script, please use the one available from https://bootstrap.pypa.io/get-pip.py
Lorsque l'erreur apparaît, la commande à frapper semble être ancienne
curl -kL https://bootstrap.pypa.io/get-pip.py | sudo python
Si vous frappez, ça va. Vérifiez s'il peut être installé
> pip -V
pip 9.0.1 from /Library/Python/2.7/site-packages (python 2.7)
Recommended Posts