3

I'm trying this on osX:

pip install MySQL-python

But I'm getting this error:

Command "python setup.py egg_info" failed with error code 1 in /private/tmp/pip-build-istycM/MySQL-python/

This is the full message:

Collecting MySQL-python
 Downloading MySQL-python-1.2.5.zip (108kB)
 100% |████████████████████████████████| 112kB 189kB/s 
 Complete output from command python setup.py egg_info:
 sh: mysql_config: command not found
 Traceback (most recent call last):
 File "<string>", line 1, in <module>
 File "/private/tmp/pip-build-istycM/MySQL-python/setup.py", line 17, in <module>
 metadata, options = get_config()
 File "setup_posix.py", line 43, in get_config
 libs = mysql_config("libs_r")
 File "setup_posix.py", line 25, in mysql_config
 raise EnvironmentError("%s not found" % (mysql_config.path,))
 EnvironmentError: mysql_config not found
 ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /private/tmp/pip-build-istycM/MySQL-python/
phd
97.4k14 gold badges165 silver badges223 bronze badges
asked Jul 2, 2017 at 21:35
1
  • Did you try installing the MySQL development files? Commented Jul 2, 2017 at 21:38

1 Answer 1

5

Make sure mysql_config is in your PATH when you run pip install, e.g.:

locate mysql_config
PATH=/usr/local/mysql/bin/:$PATH pip install mysql-python
answered Jul 2, 2017 at 21:40
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.