使用 MinGW 在 Windows 上构建 lxml

发布于 2024-12-10 01:07:29 字数 281 浏览 1 评论 0原文

我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

ゃ懵逼小萝莉 2024-12-17 01:07:29

看来lxml又依赖于libxml C库。

lxml libxml C 库的 python 包装器。

如何将此 C 库安装到我的 MinGW 环境中,以便我可以继续构建我的 lxml。

试试这个教程:http://www.pokorra.de/coding/compile_libxml_mingw.html

对于 lxml,您必须包含对 libxml 标头的引用,并且还必须链接到二进制文件。

It seems that lxml in turn depends on the libxml C library.

lxml is a python wrapper for the libxml C library.

How can I install this C library into my MinGW environment so that I can continue building my lxml.

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文