centos7编译安装php 遇到的问题
2021-03-19 19:26
标签:figure org ora 编译安装 https 问题 pack The 安装 centos7 编辑安装php遇到的问题: ./configure 配置遇到的No package ‘libxml-2.0‘ found缺失libxml2.0 库,解决方法: ./configure 配置遇到的No package ‘sqlite3‘ found,解决方法: configure: error: Please reinstall the BZip2 distribution 解决方法: configure: error: Package requirements (oniguruma) were not met: No package ‘oniguruma‘ found configure: error: Package requirements (libxslt >= 1.1.0) were not met: No package ‘libxslt‘ found configure: error: Package requirements (libpng) were not met: No package ‘libpng‘ found centos7编译安装php 遇到的问题 标签:figure org ora 编译安装 https 问题 pack The 安装 原文地址:https://www.cnblogs.com/mmykdbc/p/12749498.htmlyum -y install libxml2
yum -y install libxml2-devel
yum install sqlite-devel
yum install bzip2 bzip2-devel
yum install https://dl.fedoraproject.org/pub/epel/7/x86_64/Packages/o/oniguruma-5.9.5-3.el7.x86_64.rpm
yum install https://dl.fedoraproject.org/pub/epel/7/x86_64/Packages/o/oniguruma-devel-5.9.5-3.el7.x86_64.rpm
yum install libxslt-devel
yum install libpng-devel