我尝试在 windows x64 上安装 Mysql-python 。
我安装了 python x64 , setuptools (已在 leaf lib上检查,已成功安装)但我无法安装 mysqldb 即可。 我试图执行
C:\用户\ Fedcomp \桌面\叶0.4 \的MySQL-蟒-1.2.3>蟒 setup.py install
但抓住这个
In file included from _mysql.c:34:
D:\servers\xampp_server\xampp\mysql\include/config-win.h:211:1: warning: "finite
" redefined
D:\servers\xampp_server\xampp\mysql\include/config-win.h:164:1: warning: this is
the location of the previous definition
D:\servers\xampp_server\xampp\mysql\include/config-win.h:277:1: warning: "HAVE_S
TDDEF_H" redefined
In file included from D:\Python27\include/Python.h:8,
from pymemcompat.h:10,
from _mysql.c:29:
D:\Python27\include/pyconfig.h:673:1: warning: this is the location of the previ
ous definition
error: command 'gcc' failed with exit status 1
也尝试使用msvc但是抓住了这个(安装了MS Visual express)
C:\Users\Fedcomp\Desktop\leaf-0.4\MySQL-python-1.2.3>python setup.py install bui
ld --compiler=msvc
running install
running bdist_egg
running egg_info
writing MySQL_python.egg-info\PKG-INFO
writing top-level names to MySQL_python.egg-info\top_level.txt
writing dependency_links to MySQL_python.egg-info\dependency_links.txt
reading manifest file 'MySQL_python.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no files found matching 'MANIFEST'
warning: no files found matching 'ChangeLog'
warning: no files found matching 'GPL'
writing manifest file 'MySQL_python.egg-info\SOURCES.txt'
installing library code to build\bdist.win-amd64\egg
running install_lib
running build_py
copying MySQLdb\release.py -> build\lib.win-amd64-2.7\MySQLdb
running build_ext
building '_mysql' extension
error: Unable to find vcvarsall.bat
如何在Windows x64上正确安装mysqldb? (来自原始mysql安装的头文件,因为在xampp服务器中它们不存在)
或者有人为windows python x64 或 python x86 编译 mysqldb ?
答案 0 :(得分:35)
编辑:mysqlclient
在PyPI上有32位和64位二进制包。它是MySQL-python的一个分支,自2014年以来一直没有发布。
为后代留下的原始答案:
您可以找到二进制安装程序here(Python 2.6-3.2),here(2.7)或here(2.6)。请注意,您不必在Windows x64上使用64位Python。您也可以使用32位版本的Python,其中有更多预先构建的第三方软件包。
答案 1 :(得分:2)
我不是百分百肯定,但我认为你的路径变量是罪魁祸首。似乎找不到编译器,运行搜索vcvarsall.bat并双击它,它应该正确设置你的路径变量。然后尝试再次安装您的包。 如果找不到vcvarsall.bat,请重新安装MS Visual Express。
答案 2 :(得分:1)
“无法找到vcvarsall.bat”表示您的路径中没有必要的Visual Studio目录。
但是,如果你使用的是64位Python,那么你需要一个64位编译器,Express不会有64位版本。您可以下载SDK MSVC编译器并进行配置,但这非常困难。
如果我是你,我会切换到32位Python,你几乎可以肯定得到预先构建的二进制文件。
修改强>
piquadrat发现的预先构建的64位二进制文件会更简单!