企业网站管理系统教程,为什么要用h5建站,手机ui设计是什么,购物网站怎么建立在Windows 下调试 Python 还是挺麻烦的.通过PyCharm 来安装个MySQL-python 的库都搞了大半天.分别尝试 1.2.3,1.2.4和1.2.5都有不同的错误.需要解决的问题就是这个:“Cannot open include file: config-win.h: No such file or directory” while installing mysql-pythonconfig-win.h: No such file or directory” while installing mysql-python安装步骤如下安装 Microsoft Visual C Compiler Package for Python 2.7点击链接默认安装的路径C:\Users\admin\AppData\Local\Programs\Common\Microsoft\Visual C for Python\安装 MySQL Connector C 6.0.2点击链接也可以下载MYSQL的官方工具安装:下载 MySQL-python 1.2.5 源码包点击链接解压源码包后修改 site.cfg 文件。实际上如果你是在32 位系统上部署那么通过pip install 安装MySQL-python 1.2.5 只需进行上面的依赖包安装即可。但在 64 位环境中就会提示“Cannot open include file: config-win.h” 的错误。原因就是 site.cfg 中写的 MySQL Connector C 为32 位版本。原来的 site.cfg 文件内容如下# http://stackoverflow.com/questions/1972259/mysql-python-install-problem-using-virtualenv-windows-pip# Windows connector libs for MySQL. You need a 32-bit connector for your 32-bit Python build.connector C:\Program Files (x86)\MySQL\MySQL Connector C 6.0.2修改为connector C:\Program Files\MySQL\MySQL Connector C 6.0.2PS: pycrypto点击链接