python – pip install libxml2失败

前端之家收集整理的这篇文章主要介绍了python – pip install libxml2失败前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试安装libxml2,因为我知道这是lxml的依赖.面对如下问题:
Could not find dependencies

知道如何安装libxml2吗?

我的python版本是3.5.2.

解决方法

Official documentation具有Linux,Mac OS和Windows的安装步骤.

要在Ubuntu上安装lxml,首先需要安装二进制依赖项:

sudo apt-get install libxml2-dev libxslt-dev python-dev

然后你就可以使用pip安装lxml了:

pip install lxml

您不能使用pip安装libxml或libxslt,因为它们不是Python包.

原文链接:https://www.f2er.com/python/186714.html

猜你在找的Python相关文章