Preconditions
- You are using MySQL installation from mysql.com (and not e.g. from Macports)
- You want to install MySQL-python egg using easy_install or buildout
You’ll get an error
Getting distribution for 'MySQL-python'.
install_dir /Users/moo/project/eggs/tmp8-j13e
sh: mysql_config: command not found
Traceback (most recent call last):
File "<string>", line 1, in ?
File "/Users/moo/code/collective.buildout.python/python-2.4/lib/python2.4/site-packages/distribute-0.6.14-py2.4.egg/setuptools/command/easy_install.py", line 1855, in main
with_ei_usage(lambda:
File "/Users/moo/code/collective.buildout.python/python-2.4/lib/python2.4/site-packages/distribute-0.6.14-py2.4.egg/setuptools/command/easy_install.py", line 1836, in with_ei_usage
return f()
...
31, in <lambda>
{'__file__':setup_script, '__name__':'__main__'}
File "setup.py", line 15, in ?
File "/var/folders/O8/O8pt7q52F7Oi+P3O0pNqq++++TI/-Tmp-/easy_install-g5cvxl/MySQL-python-1.2.3/setup_posix.py", line 43, in get_config
File "/var/folders/O8/O8pt7q52F7Oi+P3O0pNqq++++TI/-Tmp-/easy_install-g5cvxl/MySQL-python-1.2.3/setup_posix.py", line 24, in mysql_config
EnvironmentError: mysql_config not found
An error occured when trying to install MySQL-python 1.2.3.Look above this message for any errors thatwere output by easy_install.
While:
Installing instance.
Getting distribution for 'MySQL-python'.
Error: Couldn't install: MySQL-python 1.2.3
The reason is that MySQL installer puts MySQL under /usr/local and does not expose MySQL utilites directly to path. MySQL-python expects to find utility mysql_config to configure compile time paths when building native bindings using GCC.
Workaround:
sudo -i
cd /usr/bin
ln -s /usr/local/mysql-5.1.46-osx10.5-x86_64/bin/mysql_config .
Then rerun installer.
Though it is a bit harsh solution to modify system folder, it gets the thing done in simple manner.
Subscribe to RSS feed
Follow me on Twitter
Follow me on Facebook
Follow me Google+