Ubuntu安裝Python的mysqlclient

介紹

本人想在Ubuntu上開發Python程序,使用MySQL數據庫。html

安裝環境: Ubuntu14.04python

安裝MySQL數據庫

具體步驟以下:mysql

apt-get update
apt-get install python-pip (已經有pip命令則跳過此步驟)

apt-get install mysql-server
apt-get install mysql-client

安裝mysqlclient

具體步驟以下:sql

apt-get install libmysql-dev
apt-get install libmysqlclient-dev
apt-get install python-dev
pip install mysqlclient

其餘

在windows上開發數據庫

我下載的是 mysqlclient-1.3.9-cp35-cp35m‑win_amd64.whl 它是wheel包管理端的。因此須要安裝wheel包支持。windows

$ pip install wheel
$ pip install /path/mysqlclient.whl

錯誤1:is not a supported wheel on this platform.

這個錯誤是因爲版本不對應。cp27是指python2.7版本。 下載與你本身安裝的python版本對應的版本就OK了。 https://my.oschina.net/HIJAY/blog/484759python2.7


參考:網站

相關文章
相關標籤/搜索