configure: error: xml2-config not found. Please check your libxml2 installation

前端之家收集整理的这篇文章主要介绍了configure: error: xml2-config not found. Please check your libxml2 installation前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

参考文章:http://blog.csdn.net/anljf/article/details/6981247

安装PHP时的报错

checking libxml2 install dir... no
checking for xml2-config path...
configure: error: xml2-config not found. Please check your libxml2 installation.

检查是否安装了libxm包

[root@XKWB3403 PHP-5.3.8]# rpm -qa |grep libxml2
libxml2-2.6.26-2.1.12
libxml2-python-2.6.26-2.1.12

重新安装libxml2和libxml2-devel包

yum install libxml2

yum install libxml2-devel -y

安装完之后查找xml2-config文件是否存在

[root@XKWB3403 PHP-5.3.8]# find / -name "xml2-config"
/usr/bin/xml2-config

如果存在的话重新安装PHP

[root@XKWB3403 PHP-5.3.8]# ./configure

安装成功的标志是

之后再进行编译

make && make install

原文链接:https://www.f2er.com/xml/294894.html

猜你在找的XML相关文章