【问题标题】:Cannot install lxml on windows, fatal error C1083: Cannot open include file: 'libxml/xmlversion.h'无法在 Windows 上安装 lxml,致命错误 C1083:无法打开包含文件:'libxml/xmlversion.h'
【发布时间】:2016-04-04 19:39:28
【问题描述】:

Python 菜鸟,请多多包涵。我使用了来自 www.python.org 的 v3.5.1 的 python 安装程序。我的意图是使用 Scrapy 运行一些脚本。

pip install scrapy 失败,easy_install scrapy 和其他人也是如此。我将错误追溯到 lxml 的错误安装。这是错误日志。我什至尝试过easy_installing libxml2,我不知道如何继续。

Building lxml version 3.5.0.
Building without Cython.
ERROR: b"'xslt-config' is not recognized as an internal or external command,\r\noperable program or batch file.\r\n"
** make sure the development packages of libxml2 and libxslt are installed **

Using build configuration of libxslt
cl : Command line warning D9025 : overriding '/W3' with '/w'
lxml.etree.c
src\lxml\includes\etree_defs.h(14): fatal error C1083: Cannot open include file: 'libxml/xmlversion.h': No such file or directory
Compile failed: command 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\BIN\\cl.exe' failed with exit status 2
xmlXPathInitck3f6zpk.c
C:\Users\Rohan\AppData\Local\Temp\easy_install-47utdost\lxml-3.5.0\temp\xmlXPathInitck3f6zpk.c(1): fatal error C1083: Cannot open include file: 'libxml/xpath.h': No such file or directory
*********************************************************************************
Could not find function xmlCheckVersion in library libxml2. Is libxml2 installed?
*********************************************************************************
error: Setup script exited with error: command 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\BIN\\cl.exe' failed with exit status 2

【问题讨论】:

标签: python python-3.x scrapy lxml


【解决方案1】:

我遇到了同样的问题,尽管使用的是 WinPython 64bit 2.7.3.1。

我使用预编译的安装程序解决了这个问题,可以在这里找到:https://pypi.python.org/pypi/lxml/3.3.3#downloads

通过运行 .exe 直接安装包失败,因为安装程序找不到我的 python 安装(尽管它已注册)。 不过,我随后成功使用 WinPython 控制面板安装了包!

编辑:在此之前,我尝试了在 stackoverflow 上找到的各种东西,包括安装一些 Visual C++ (Python) 编译器,但都没有奏效。

【讨论】:

  • 安装程序现在似乎需要安装特定版本的 Python。
【解决方案2】:

我在 Windows 10 上使用 Python 64bit 2.7.11 时遇到了同样的问题。

在我多次尝试使用pip安装scrapy后,我成功了:

  1. 首先我从.exe 安装了预编译包lxml v3.6.0 文件。可以在这里找到https://pypi.python.org/pypi/lxml/3.6.0

  2. 最后,我再次运行pip install scrapy,安装结束 成功了。

黑客愉快!!!

【讨论】:

    猜你喜欢
    • 2017-03-03
    • 2011-02-07
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2016-10-23
    • 1970-01-01
    相关资源
    最近更新 更多