DEV Community

Discussion on: Using libcurl3 and libcurl4 on Ubuntu 18.04 (Bionic)

Collapse
 
ahukkanen profile image
Antti Hukkanen

I believe they have just changed the file name as you can see from the libcurl3 package details:
packages.ubuntu.com/bionic/amd64/l...

As confusing as it is, the file is actually named libcurl.so.4.5.0. So, after installing libcurl3, this should work:

$ cp /usr/lib/x86_64-linux-gnu/libcurl.so.4.5.0 /usr/lib/libcurl.so.3

After that, follow the advice in the original post.