pip install libxml2失败了

Pra*_*ban 8 python python-3.x

我正在尝试安装,libxml2因为我知道这是依赖性lxml.面对如下问题:

Could not find dependencies
Run Code Online (Sandbox Code Playgroud)

不知道怎么安装libxml2

我的python版本是3.5.2.

Nic*_*kAb 15

官方文档包含Linux,Mac OS和Windows的安装步骤.

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

sudo apt-get install libxml2-dev libxslt-dev python-dev
Run Code Online (Sandbox Code Playgroud)

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

pip install lxml
Run Code Online (Sandbox Code Playgroud)

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