一、mysqldb模块
http://sourceforge.net/projects/mysql-python/
二、解压安装
解压
vi setup_posix.py
mysql_config.path = "/usr/local/mysql/bin/mysql_config"
sudo python setup.py install
三、验证
Harry:MySQL-python-1.2.4b4 harry$ python Python 2.7.10 (default, Jul 14 2015, 19:46:27) [GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.39)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import MySQLdb
此时会报错,需要建立软连接
sudo ln -s /usr/local/mysql/lib/libmysqlclient.18.dylib /usr/lib/libmysqlclient.18.dylib
原文:http://my.oschina.net/u/204498/blog/519164