Ubuntu – error while loading shared libraries: libzip.so.2

shared library

I am trying to run an app and I am getting this error in a fresh installation of Ubuntu in VMWARE

./futurerestore_linux: error while loading shared libraries: libzip.so.2: cannot open shared object file: No such file or directory

I had an similar error earlier today and looks like I had to create a link.

However I do see libzip.so.2 in /lib/x86_64-linux-gnu when I did dir in this directory, so unsure what I need to do to get this working. Interesting part is, I don't see it as a package

Best Answer

You have to install libzip.

Maybe try the command:

sudo apt install libzip4

Also I had to install libcurl to get the program to work.

sudo apt install libcurl3