Python 安装mysql (MAC)

一、mysqldb模块

http://sourceforge.net/projects/mysql-python/

二、解压安装

  1. 解压

  2. vi setup_posix.py

  3. mysql_config.path = "/usr/local/mysql/bin/mysql_config"

  4. 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


你可能感兴趣的:(Python 安装mysql (MAC))