1

I am trying to install this software called Vlab. Its a Plant modelling software. I am following their instruction to install their software. After that if i run the command

vlab-splash

which is supposed to start the application, it says

raja@raja-XPS-8300:~$ vlab-splash vlab-splash: error while loading shared libraries: libQt3Support.so.4: cannot open shared object file: No such file or directory

I have all the dependencies installed. I have qt4-sdk qt4 creator. Help me fix this. Thanks

Raja
  • 111

1 Answers1

0

This might be because you have the 64-bit libqt4-qt3support libraries. Get the 32-bit libraries like so

dpkg --add-architecture i386
apt-get update
apt-get install libc6:i386 libqt4-qt3support:i386
Oliver
  • 1