So I can't seem to figure out how to install python module on Mac. I thought I had installed pip and thought everything had worked, python tells me that none of the modules have install.
I have no idea what's going on.
I'm trying to install xlrd. Typed in Terminal:
And got this:
What's going wrong?
I have no idea what's going on.
I'm trying to install xlrd. Typed in Terminal:
Code:
pip install --user xlrd
And got this:
Code:
Traceback (most recent call last):
File "/usr/local/bin/pip", line 5, in <module>
from pkg_resources import load_entry_point
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/pkg_resources.py", line 2603, in <module>
working_set.require(__requires__)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/pkg_resources.py", line 666, in require
needed = self.resolve(parse_requirements(requirements))
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/pkg_resources.py", line 565, in resolve
raise DistributionNotFound(req) # XXX put more info here
pkg_resources.DistributionNotFound: pip==6.0.6
What's going wrong?