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

15.04curl

I'm trying to install a framework using curl but I keep getting this annoying error message curl: (1) Protocol https not supported or disabled in libcurl. Does any one know how to fix this? I'm stack!

Thanks

Best Answer

I managed to fix the issue after some hours of trying various options! Here's what I did:

Downloaded from http://curl.haxx.se/download.html.

tar -xzf curl-***.tar.gz
cd curl-*.*.*
./configure --with-ssl
make
sudo make install
Related Question