Monday, September 1, 2014

How to over come "https not supported or disabled in libcurl" error when using CURL


If you see an error like this, You have to simply follow the following steps.

curl: (1) Protocol https not supported or disabled in libcurl

#1

Uninstall the CURL and its dependencies from your machine

sudo apt-get remove --auto-remove curl


#2

Download the CURL latest version from here.

#3

Navigate to the extracted CURL package and configure it with SSL option.

./configure --with-ssl

#4

now build the source.

make

#5

install the CURL

make install

No comments:

Post a Comment