win10 MySQL-Python 快速安裝

win10 MySQL-Python 快速安裝

安裝過程

$ pip install mysql-python

不出意外會報錯

_mysql.c(42) : fatal error C1083: Cannot open include file: 'config-win.h': No such file or directory

error: command 'C:\\xxx\Microsoft\\Visual C++ for Python\\9.0\\VC\\Bin\\amd64\\cl.exe' failed with exit status 2

----------------------------------------
Cleaning up...
Command C:\Python27\python.exe -c "import setuptools, tokenize;__file__='c:\\users\\t-ligao\\appdata\\local\\temp\\pip_build_t-ligao\\mysql-python\\setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record c:\xxx\local\temp\pip-o7nils-record\install-record.txt --single-version-externally-managed --compile failed with error code 1 in c:\users\t-ligao\appdata\local\temp\pip_build_t-ligao\mysql-python
Storing debug log for failure in C:\Users\t-ligao\pip\pip.log

解決方法

$ pip install wheel
$ pip install MySQL_python-1.2.5-cp27-none-win_amd64.whl

D:\mysqlclient_whl
λ pip install MySQL_python-1.2.5-cp27-none-win_amd64.whl
Unpacking d:\mysqlclient_whl\mysql_python-1.2.5-cp27-none-win_amd64.whl
Installing collected packages: MySQL-python
Successfully installed MySQL-python
Cleaning up...

安裝完成!

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章