shadow3
shadow3

Reputation: 107

unable to install jd-gui on ubuntu 16.04,64 bit machine

Getting following error:

error while loading shared libraries: libgtk-x11-2.0.so.0: cannot open shared object file: No such file or directory

Already tried installing using below cmd:

sudo apt-get install ia32-libs-gtk

Getting error for this too:E: Unable to locate package ia32-libs-gtk

Upvotes: 1

Views: 2400

Answers (1)

Dawid Laszuk
Dawid Laszuk

Reputation: 1978

Seems you need to install x86 version:

sudo apt-get install libgtk2.0-0:i386

Upvotes: 1

Related Questions