Configuration Failed Because Libcurl Was Not Found

Configuration failed because libcurl was not found

libcurl4-openssl-dev is not a R package, but rather a linux library.

In a console type:

sudo apt-get install libcurl4-openssl-dev

Note: you need sudo powers.

Unable To Install Tidyverse Due To Libcurl Issue

try setting your path to the directory that contains libcurl and not to libcurl itself, i.e.

PKG_CONFIG_PATH=/home/nik/anaconda3/lib/pkgconfig

Curl package not installing

libcurl4-openssl-dev is not a R package, but rather a linux library.

In a console type:

sudo apt-get install libcurl4-openssl-dev

Note: you need sudo powers.

Answer in Configuration failed because libcurl was not found

Install LIBCURL-DEVEL on SUSE 12.4 to use CURL R package

You can go here here, search for libcurl-devel for your SUSE version, download it and install it locally using provided instructions. I do see that libcurl-devel is available for your system.

UPDATE
In my understanding, the problem is that you don't have the SDK module activated in your system. If you don't have administrative privileges, ask the administrator to activate the SDK module by running:

SUSEConnect -p sle-sdk/12.4/x86_64

After this module is activated, run:

sudo zypper install libcurl-devel

R/ RStudio - install devtools fails?

The error messages may be a bit confusing, because RStudio is asking you to install libcurl and openssl libraries for your Linux OS; for those you actually need Ubuntu packages instead of R packages.

Open a command line terminal, and type

sudo apt-get install libcurl4-openssl-dev libssl-dev 

Once the installation of your Ubuntu packages is completed, try again and you'll be able to install the devtools R package



Related Topics



Leave a reply



Submit