When I tried to connect python to mysql, I found that I needed pip.
>curl -kL https://raw.github.com/pypa/pip/master/contrib/get-pip.py | python
Even if you hit
% 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
When the error appears, the command to hit seems to be old
curl -kL https://bootstrap.pypa.io/get-pip.py | sudo python
If you hit, it's okay. Check if it can be installed
> pip -V
pip 9.0.1 from /Library/Python/2.7/site-packages (python 2.7)
Recommended Posts