1. 程式人生 > >關於在Python3.6下安裝MySQL-python模塊的問題

關於在Python3.6下安裝MySQL-python模塊的問題

cmd tracking post soft lan rec tps onf pychar

關於在Python3.6下安裝MySQL-python模塊的問題

安裝MySQL-python模塊,一開始百度到用pip安裝:

pip install MySQL-python

但是在安裝的時候卻報錯了:

mysql.c(42): fatal error C1083: 無法打開包括文件: “config-win.h”: No such file or directory
error: command ‘D:\\Microsoft Visual Studio 14.0\\VC\\BIN\\x86_amd64\\cl.exe‘ failed with exit status 2

適合在Python-3.5上擴展的mysql驅動

https://pypi.python.org/pypi/mysqlclient/1.3.10

技術分享圖片

下載後*.whl文件放在Scripts目錄

然後用cmd命令進入到這個目錄執行PIP命令安裝:

pip install xxxx.whl

提示:

Installing collected packages: mysqlclient
Successfully installed mysqlclient-1.3.10

打開pycharm,在文件導入模塊:

import MySQLdb

沒有報錯提示MySQLdb模塊找不到,說明安裝成功!

關於在Python3.6下安裝MySQL-python模塊的問題