安装libxml2和相关的python绑定 – Windows

我正在尝试安装libxml2,以便可以设置python绑定并最终使用lxml。

然而,我无法在这里工作,我应该解压缩文件。 我没有能够谷歌成功。

我需要使用Cygwin / MinGW进行安装吗?

目前,我的Python文件夹中的libxml2.tar.gz和libxslt.tar.gz文件在它们各自的目录中。 因此,包含在tars中的文件在Python26 \ include \ libxml2 \ libxml中,等等。

但是,当我运行easy_install lxml我收到以下输出:

Searching for lxml Reading http://pypi.python.org/simple/lxml/ Reading http://codespeak.net/lxml Best match: lxml 2.2.4 Downloading http://codespeak.net/lxml/lxml-2.2.4.tgz Processing lxml-2.2.4.tgz Running lxml-2.2.4\setup.py -q bdist_egg --dist-dir c:\users\rocco\appdata\local \temp\easy_install-1xwbhy\lxml-2.2.4\egg-dist-tmp-9zwhe4 Building lxml version 2.2.4. NOTE: Trying to build without Cython, pre-generated 'src/lxml/lxml.etree.c' need s to be available. ERROR: 'xslt-config' is not recognized as an internal or external command, operable program or batch file. ** make sure the development packages of libxml2 and libxslt are installed ** Using build configuration of libxslt warning: no files found matching 'lxml.etree.c' under directory 'src\lxml' warning: no files found matching 'lxml.objectify.c' under directory 'src\lxml' warning: no files found matching 'lxml.etree.h' under directory 'src\lxml' warning: no files found matching 'lxml.etree_api.h' under directory 'src\lxml' warning: no files found matching 'etree_defs.h' under directory 'src\lxml' warning: no files found matching 'pubkey.asc' under directory 'doc' warning: no files found matching 'tagpython*.png' under directory 'doc' error: Setup script exited with error: Unable to find vcvarsall.bat 

任何帮助将是非常有帮助的,因为我一直试图让这个去一个多星期现在:(

谢谢

如果你没有特别的理由从源代码编译,你可以使用lxml 预编译的二进制文件

最新版本的lxml(以及各种其他Python包)的Windows二进制文件可在http://www.lfd.uci.edu/~gohlke/pythonlibs/上找到

如果您使用的是python 2.5.x,只需使用“ easy_install lxml == 2.2.2 ”来安装

意识到这是一个古老的话题,但有安装在Windows上的问题。

我有Python版本3.4.4。

当试图安装whl文件时,确保你使用的是正确版本的python版本。

所以在这种情况下,我需要使用

 lxml‑3.4.4‑cp34‑none‑win_amd64.whl 

而不是最新的

LXML-3.4.4-CP35-NONE-win_amd64.whl

cp34表示它为其构建的python版本。

陷阱为新的球员…!

看来程序“xslt-config”不在PATH环境的目录中。 这里有一篇关于在Windows上设置PATH的文章:

http://www.cs.usask.ca/~wew036/latex/env.html