MAC下安装mysql-python方法(亲测可用)

mac装mysql-python有点坑,好在解决了,为了避免类似的问题耽误大家时间,我写下我安装的最终过程:

我选择的brew安装

 

1、安装brew

curl -LsSf http://github.com/mxcl/homebrew/tarball/master | sudo tar xvz -C/usr/local --strip 1

安装成功后如果提示你要update你就brew update 更新

 

2、安装mysql-connector-c(大家安装过程中是不是经过遇到EnvironmentError: mysql_config not found,就是没有安装这个)

brew install mysql-connector-c

 

3、安装mysql-python

自己下载https://sourceforge.net/projects/mysql-python/?source=dlpt

 

4、验证安装

终端输入:python

 

import MySQLdb

 

 

到此安装成功了,挺简单的,但是能给大家节约很多时间~

你可能感兴趣的:(mac)