Easy_install Gets Wrong Pip Version
I have been following the instructions on http://docs.python-guide.org/en/latest/starting/install/osx/ but for some reason this is not going as I believe it would be expected. I ha
Solution 1:
You can use
easy_install-2.7
or if you don't have that alias:
python2.7 -m easy_install <stuff>
For pip:
pip2.7
Post a Comment for "Easy_install Gets Wrong Pip Version"