python操作mysql之windows安装mysqldb之坑
目录
python操作mysql之windows安装mysqldb之坑
说明:python操作mysql,需要安装mysqldb模块,注:现在直接安装pymysql吧。
但是报错error: command ‘cl.exe’ failed: No such file or directory以及fatal error C1083: 无法打开包括文件: “config-win.h”: No such file or directory
error: command ‘cl.exe’ failed: No such file or directory解决方案
- 需要安装c++ cli模块;如果已经安装了vs2015及以上版本,需要重新启动安装程序,把c++(cli)功能勾选上
- 使用已经编译好的文件
见 文件参考 http://www.lfd.uci.edu/~gohlke/pythonlibs/
参考回答:https://stackoverflow.com/questions/43980405/cl-exe-failed-no-such-file-or-directory-when-installing-scrapy
注意选择 python 版本 以及系统版本,本文使用
fatal error C1083: 无法打开包括文件: “config-win.h”: No such file or directory
安装:MySQL-python-1.2.3.win-amd64-py2.7.exe 就可以了(百度csdn下载可以找到)
参考链接
https://blog.csdn.net/weixin_38102912/article/details/81256513
https://blog.csdn.net/u012882134/article/details/51934165/
http://www.cnblogs.com/fnng/p/4115607.html