Als ich versuchte, Python mit MySQL zu verbinden, stellte ich fest, dass ich Pip brauchte.
>curl -kL https://raw.github.com/pypa/pip/master/contrib/get-pip.py | python
Auch wenn du schlägst
% 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
Wenn der Fehler auftritt, scheint der zu treffende Befehl alt zu sein
curl -kL https://bootstrap.pypa.io/get-pip.py | sudo python
Wenn Sie schlagen, ist es in Ordnung. Überprüfen Sie, ob es installiert werden kann
> pip -V
pip 9.0.1 from /Library/Python/2.7/site-packages (python 2.7)
Recommended Posts