红联Linux门户
Linux帮助

configure: error:Please reinstall the libcurl distribution

发布时间:2016-06-08 09:57:50来源:linux网站作者:风行天下——

提示的错误如下:
configure: error: Please reinstall the libcurl distribution -
easy.h should be in /include/curl/


原因:基本上确定是丢失了什么包所致,上网搜索得到需要事先安装的依赖包。


解决办法:
1.RetHat CentOS or Fedora 使用下面安装命令:
yum install curl curl-devel
2.Debian or Ubuntu使用下面的安装命令:
apt-get install curl
apt-get install libcurl4-gnutls-dev

注:支持yum仓库的使用第1条执行,支持Ubuntu的apt-get仓库的使用第2条执行。


本文永久更新地址:http://www.linuxdiyf.com/linux/21333.html