curl in updated ubuntu Bionic does not work
curl
stopped working properly after updates installed on ubuntu 18.04 with following error:
curl: /usr/local/lib/libcurl.so.4: no version information available (required by curl)
curl: (1) Protocol "https" not supported or disabled in libcurl
Check libcurl (locate) and then change symlink of usr/local libcurl to usr/lib libcurl :
sudo rm /usr/local/lib/libcurl.so.4
sudo ln -s /usr/lib/x86_64-linux-gnu/libcurl.so.4.5.0 /usr/local/lib/libcurl.so.4
This fixed the problem for me
Leave a Reply