如何在CentOS 6.5上安装libxml2和libxslt包
时间:2019-08-20 17:58:16 来源:igfitidea点击:
libxml2是一个用于解析XML文档的软件库。
它也是处理XSLT-1.0样式表的libxslt库的基础。
libxslt是为GNOME项目开发的xsltc库
安装EPEL Repo
要安装libxml2和libxslt,首先安装EPEL repo。
rpm -ivh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
安装后,在/etc/yum.repos.d目录中,多了两个repo文件。
[root@localhost ~]# ls -l /etc/yum.repos.d/ total 24 -rw-r--r--. 1 root root 1926 Nov 27 17:23 CentOS-Base.repo -rw-r--r--. 1 root root 638 Nov 27 17:23 CentOS-Debuginfo.repo -rw-r--r--. 1 root root 630 Nov 27 17:23 CentOS-Media.repo -rw-r--r--. 1 root root 3664 Nov 27 17:23 CentOS-Vault.repo -rw-r--r--. 1 root root 957 Nov 5 2012 epel.repo -rw-r--r--. 1 root root 1056 Nov 5 2012 epel-testing.repo [root@localhost ~]#
安装libxml2 libxslt
使用yum命令安装libxslt,libxml2软件包。
yum install libxml2 libxslt
上面的命令将在基于redhat的操作系统上安装libxml2和libxslt包。