使用 MinGW 在 Windows 上构建 lxml
我的 Python 应用程序需要 lxml。当我尝试安装 lxml 时,出现“vcvrsall.bat not found”错误。在互联网上进行挖掘后,我发现我需要安装 MinGW,将其添加到我的 PATH 变量中并修改 distutils.cfg 才能使用此编译器。它现在尝试下载 lxml 源代码并进行编译,但失败并出现错误:致命错误:libxml/xmlversion.h:没有这样的文件或目录。看来lxml又依赖于libxml C库。如何将此 C 库安装到我的 MinGW 环境中,以便我可以继续构建我的 lxml。
谢谢。
My Python application required lxml. When I tried installing lxml, it the a "vcvrsall.bat not found" error. After digging around on the interwebs, I found that I needed to install MinGW, add it to my PATH variable and modify the distutils.cfg to use this compiler. It worked to the point that it now tried to download the lxml sources and compile it but fails on an error that reads fatal error: libxml/xmlversion.h: No such file or directory
. It seems that lxml in turn depends on the libxml C library. How can I install this C library into my MinGW environment so that I can continue building my lxml.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
lxml
是libxml
C 库的 python 包装器。试试这个教程:http://www.pokorra.de/coding/compile_libxml_mingw.html
对于 lxml,您必须包含对 libxml 标头的引用,并且还必须链接到二进制文件。
lxml
is a python wrapper for thelibxml
C library.Try this tutorial: http://www.pokorra.de/coding/compile_libxml_mingw.html
For lxml, you have to include references to the libxml headers and also have to link against the binaries.
您可以在以下位置下载非官方 Windows 二进制文件:
http://www.lfd.uci.edu/~gohlke/pythonlibs/
例如对于 python 2.7 32 位:
http://www.lfd.uci.edu/~gohlke/pythonlibs/3i67tivk/lxml-2.3.3.win32-py2.7.exe" lfd.uci.edu/~gohlke/pythonlibs/3i67tivk/lxml-2.3.3.win32-py2.7.exe
you can download Unofficial Windows Binaries at:
http://www.lfd.uci.edu/~gohlke/pythonlibs/
e.g. for python 2.7 32bit:
http://www.lfd.uci.edu/~gohlke/pythonlibs/3i67tivk/lxml-2.3.3.win32-py2.7.exe