MAC下安裝mysql-python方法(親測可用)

趙騰-7eng發表於2016-08-09

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

 

 

到此安裝成功了,挺簡單的,但是能給大家節約很多時間~

相關文章