Protocol "https" not supported or disabled in libcurl [closed]
Solution 1:
Please install curl
with SSL
Download:
- curl Releases and Downloads
Installing with SSL:
-
Unzip -> open terminal inside the directory PATH and type:
./configure --with-ssl make sudo make install
You can also specify the path to SSL installation, see ./configure --help
for details
Solution 2:
A quick google found this curl FAQ on troubleshooting this problem.
But I actually would suggest to delete your current manual install of curl, and just install it with sudo apt-get install curl
. The default Ubuntu install has the right libraries for https (and many more).