I have a Python / Django project that I manage with PyCharm. Everything worked fine under Mac OSX Yosemite. This morning I upgraded to the latest version of El Capitan, now I can not start the project. The error I am getting is:
Error loading MySQLdb module: no module named MySQLdb
I tried all the suggestions from past questions, but no one resolved this. The most common assumption is as follows:
sudo pip install MySQL-python
When I do this, I get:
The requirement has already been met (use --upgrade to upgrade): MySQL-python in / Library / Python / 2.7 / site-packages
None of the other suggestions help. I can try reinstalling MySQL, but I don't think it broke MySQL. This may have something to do with permissions. Can anyone help me get back again?
source share