I've upgraded to Yosemite and this seems to have broken my python modules.
python --version
== Python 2.7.6
Then from the Python shell:
>>> import pyrax
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Library/Python/2.7/site-packages/pyrax/__init__.py", line 38, in <module>
import six.moves.configparser as ConfigParser
ImportError: No module named configparser
So its complaining about configparser
.
pip show configparser
---
Name: configparser
Version: 3.3.0r2
Location: /Library/Python/2.7/site-packages
Requires:
But it is there. After some reading it seems clear that ConfigParser has been renamed to configparser in python version 3. I am however running 2.7.
--- EDIT ----
Some more info:
I'm not using homebrew for Python
I've tried re-installing pyrax
Any ideas ?