The white papers contain installation steps for Linux, Mac OS, and Windows.
To install lxml on Ubuntu, you will first need to install the binary dependencies:
sudo apt-get install libxml2-dev libxslt-dev python-dev
Then you can install lxml with pip:
pip install lxml
You cannot install libxmlor libxsltusing pip as they are not Python packages.
source
share