欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

安装php的curl拓展时遇到:configure: error: Please reinstall t

程序员文章站 2024-01-15 17:09:40
...

http://blog.sina.com.cn/s/blog_75a07c3b0101kcwa.html 安装php的curl时,报如下错: configure: error: Please reinstall the libcurl distribution - easy.h should be in curl-dir/include/curl/ 找到某网友的解决方法: 今天配置一台server的php支持cur

http://blog.sina.com.cn/s/blog_75a07c3b0101kcwa.html


安装php的curl时,报如下错:

configure: error: Please reinstall the libcurl distribution -
easy.h should be in /include/curl/


找到某网友的解决方法:


今天配置一台server的php支持curl的时候, 出现如下报错


checking for cURL in default path... not found
configure: error: Please reinstall the libcurl distribution -
easy.h should be in /include/curl/

其实就是curl的dev包没有安装, 解决方案:
终端下

# yum -y install curl-devel

然后就可以继续了