cannot open shared object file: No such file or directory [closed]
I have the same problem and I was unable to fund solution on the internet, nothing worked for me. Finally I've managed it to work simply by installing libgtk2.0-0:i386 graphic library from the Ubuntu Software Center.
You can also type the following command in a terminal:
sudo apt-get install libgtk2.0-0:i386
To fix this issue. You must install ia32-libs-gtk
, which is a virtual package of ia32-libs. Also try installing libglib2.0-dev
sudo apt-get install ia32-libs libglib2.0-dev
If the above did not work then try installing
sudo apt-get install libgtk2.0-0
The shared library you mentioned belongs to libgtk2.0.0. So the above command should solve the issue.
If you are running 64 bit Ubuntu, try
sudo apt-get install libgtk2.0-0:i386
This worked in 14.04 LTS