Mac系統+MAMP中Python安裝MySQLdb安裝中的各種坑和解決辦法

來源:互聯網
上載者:User

特麼的,以前在linux伺服器上,安裝MySQLdb,其實只要 :


安裝MySQLdb:
pip install MySQL-python
就OK了,現在由於要在Mac系統安裝,結果,各種報錯啊。。報錯我就不接圖了,大體上有2種錯誤:

1、EnvironmentError: mysql_config not found

2、_mysql.c:44:10: fatal error: 'my_config.h' file not found

Mac os 安裝 MySQLdb真是各種坑啊,沒辦法,由於要在本地開發一個小項目,不得已,也得安裝啊.

google 一番之後:

Mac系統+MAMP中Python安裝MySQLdb的正確安裝姿勢如下:

我的Mac 使用的 Mamp 的


1、先把之前裝的卸載乾淨:
pip uninstall mysql-python
brew uninstall mysql-connector-c

2、現在設定下mysql_config路徑:
首先修改系統設定檔vim ~/.bash_profile或者有些人是 ~/.profile,

export PATH=$PATH:/Applications/MAMP/Library/bin
這裡/Applications/MAMP/Library/bin是MAMP的mysql設定檔路徑
source .bash_profile  載入下環境變數。

3、安裝
brew install mysql-connector-c
pip install mysql-python

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.