- sqlite3依赖错误
错误:
checking for sqlite3 >= 3.7.7... no
configure: error: Package requirements (sqlite3 >= 3.7.7) were not met:
Package 'sqlite3', required by 'virtual:world', not found
解决:
sudo dnf install sqlite-devel
- sqlite3依赖错误
错误:
checking whether to enable bc style precision math functions... yes
checking for BZip2 support... yes
checking for BZip2 in default path... not found
configure: error: Please reinstall the BZip2 distribution
解决:
sudo dnf -y install bzip2-devel
- libcurl依赖错误
错误:
checking for libcurl >= 7.29.0... no
configure: error: Package requirements (libcurl >= 7.29.0) were not met:
Package 'libcurl', required by 'virtual:world', not found
解决:
sudo dnf -y install libcurl-devel
- gmp依赖错误
错误:
checking for __gmpz_rootrem in -lgmp... no
configure: error: GNU MP Library version 4.2 or greater required.
解决:
sudo dnf -y install gmp-devel
- oniguruma依赖错误
错误:
configure: error: Package requirements (oniguruma) were not met:
Package 'oniguruma', required by 'virtual:world', not found
解决:
sudo yum install oniguruma-devel
- readline 依赖错误
错误:
checking for libedit readline replacement... no
checking for readline support... yes
configure: error: Please reinstall readline - I cannot find readline.h
解决:
sudo yum -y install readline-devel
- libxslt 依赖错误
错误:
checking for libxslt >= 1.1.0... no
configure: error: Package requirements (libxslt >= 1.1.0) were not met:
Package 'libxslt', required by 'virtual:world', not found
解决:
sudo dnf -y install libxslt-devel
- libpng 依赖错误
错误:
checking for libpng... no
configure: error: Package requirements (libpng) were not met:
Package 'libpng', required by 'virtual:world', not found
解决:
sudo dnf -y install libpng-devel
- libjpeg 依赖错误
错误:
checking for libjpeg... no
configure: error: Package requirements (libjpeg) were not met:
Package 'libjpeg', required by 'virtual:world', not found
解决:
sudo dnf -y install libjpeg-devel
- freetype2 依赖错误
错误:
checking for freetype2... no
configure: error: Package requirements (freetype2) were not met:
Package 'freetype2', required by 'virtual:world', not found
解决:
sudo dnf -y install freetype-devel
- libzip 依赖错误
错误:
configure: error: Package requirements (libzip >= 0.11 libzip != 1.3.1 libzip != 1.7.0) were not met:
Package 'libzip', required by 'virtual:world', not found
解决:
sudo dnf -y install libzip-devel