I have been trying to install MySQL in python using the following command:
pip install MySQL-python
However, I receive the following error:
Command "python setup.py egg_info" failed with error code 1 in /private/var/folders/78/6x078vmd591d01w_p5l6wtk40000gp/T/pip-install-xBIsBR/MySQL-python/
Now, I realize there are many sources that say to simply run this:
pip install --upgrade setuptools
I have tried this, and I get this:
Requirement already up-to-date: setuptools in /Library/Python/2.7/site-packages (41.0.0)
So it seems to me that my setuptools
are fine, but I am still unable to install MySQL. Any suggestions?