企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
configure error: ``` 1.configure: error: xml2-config not found. Please check your libxml2 installation. 解决: ``` $ yum install libxml2 libxml2-devel ``` 2.configure: error: Cannot find OpenSSL's <evp.h> 解决: ``` $ yum install openssl openssl-devel ``` 3.configure: error: Please reinstall the BZip2 distribution 解决: ``` $ yum install bzip2 bzip2-devel ``` 4.configure: error: Please reinstall the libcurl distribution - easy.h should be in <curl-dir>/include/curl/ 解决: ``` $ yum install libcurl libcurl-devel ``` 5.If configure fails try --with-webp-dir=<DIR> configure: error: jpeglib.h not found. 解决: ``` $ yum install libjpeg libjpeg-devel ``` 6.If configure fails try --with-webp-dir=<DIR> checking for jpeg_read_header in -ljpeg... yes configure: error: png.h not found. 解决: ``` $ yum install libpng libpng-devel ``` 7.If configure fails try --with-webp-dir=<DIR> checking for jpeg_read_header in -ljpeg... yes checking for png_write_image in -lpng... yes If configure fails try --with-xpm-dir=<DIR> configure: error: freetype-config not found. 解决: ``` $ yum install freetype freetype-devel ``` 8.configure: error: Unable to locate gmp.h 解决: ``` $ yum install gmp gmp-devel ``` 9.configure: error: mcrypt.h not found. Please reinstall libmcrypt. 解决: ``` $ yum install libmcrypt libmcrypt-devel ``` 10.configure: error: Please reinstall readline - I cannot find readline.h 解决: ``` $ yum install readline readline-devel ``` 11.configure: error: xslt-config not found. Please reinstall the libxslt >= 1.1.0 distribution 解决: ``` $ yum install libxslt libxslt-devel ```