红联Linux门户
Linux帮助

如何在linux下安装lxml(pip安装,ubuntu下,centos下)

发布时间:2016-06-14 16:04:27来源:linux网站作者:细雨微光

首先需要明白lxml包依赖其他包,必须先安装其他包然后再安装lxml。


安装python-pip:方便安装python的第三方包

[root@******/]# wget https://bootstrap.pypa.io/get-pip.py --no-check-cert
[root@******/]# python get-pip.py


ubuntu下安装lxml:

安装依赖包:[root@******/]# apt-get install libxml2-dev libxslt1-dev python-dev

然后安装lxml:[root@******/]# apt-get install python-lxml


centos下安装lxml:

安装依赖包:[root@****** /]# yum install libxslt-devel python-devel
然后安装lxml:[root@****** /]# pip install lxml


本文永久更新地址:http://www.linuxdiyf.com/linux/21523.html