Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing R on Linux: configure: error: libcurl >= 7.28.0 library and headers are required with support for https

Tags:

installation

r

My issue is this:

Rigth now i have R 3.2 wooden xmas tree version, but theres some packages I need that dosent work on this version, so when i try to install the newest version, with

./configure

It returns the next error

configure: error: libcurl >= 7.28.0 library and headers are required with support for https

I have a package called libcurl3 installed. And its already in the last version.

Ill appreciate any help.

Note: I'm using Ubuntu based Peppermint 7 OS

like image 477
Tangent3 Avatar asked Aug 01 '16 02:08

Tangent3


3 Answers

I had similar problem, and I solve it by installing libcurl4-openssl-dev. This is one of packages, which R could use (R manual https://cran.r-project.org/web/packages/curl/index.html)

like image 95
Семен Поляков Avatar answered Nov 20 '22 22:11

Семен Поляков


In my case, it was due to libcurl installed in anaconda2 package, whose libcurl version did not support https.
I removed the path to anaconda2 from PATH variable, and it was all fixed.

like image 29
nasica88 Avatar answered Nov 20 '22 22:11

nasica88


I had the same problem on centos 7. I fixed it by installing the libcurl-devel. The mistake I had made was that I just had libcurl installed and not it's development packages.

like image 5
raviabhiram Avatar answered Nov 20 '22 23:11

raviabhiram