LibHelp.so: Cannot load library
-
/home/krustasia/Qt5.3.2/Tools/QtCreator/lib/qtcreator/plugins/libHelp.so: Cannot load library /home/krustasia/Qt5.3.2/Tools/QtCreator/lib/qtcreator/plugins/libHelp.so: (libxslt.so.1: cannot open shared object file: No such file or directory)
OS: ubuntu 14.04 amd64
installer: qt-opensource-linux-x86-5.3.2.runlibpng is already installed
@$ sudo dpkg --get-selections | grep libpng
libpng12-0:amd64 install
libpng12-0:i386 install@ -
Hi,
Aren't you somehow mixing by any chance your distribution Qt 5 with the one from the installer ?
-
Check you Qt version as well as your kit, as for the original error it seems you are missing the xslt library
-
Are you saying that you reinstalled Qt from the installer in your home directory using sudo ?
-
Hi, I'm having the same problem. That's happens because you installed the x86 version in a x64 system and, because of that, some 32bits libraries are missing. You can fix this looking for missing dependencies and installing one by one, look this output:
@
filipe@ThinkPad-T430:/opt/Qt5.4.0/Tools/QtCreator/lib/qtcreator/plugins$ ldd libHelp.so | grep "not found"
libCore.so => not found
libProjectExplorer.so => not found
libxslt.so.1 => not found
libxml2.so.2 => not found
libgstreamer-0.10.so.0 => not found
libgstapp-0.10.so.0 => not found
libgstbase-0.10.so.0 => not found
libgstinterfaces-0.10.so.0 => not found
libgstpbutils-0.10.so.0 => not found
libgstvideo-0.10.so.0 => not found
@to fix for libxslt.so.1 you can use this command:
$ sudo apt-get install libxslt1.1:i386
Note the ":i386" ending, this will make sure that you're asking for 32 bits libraries. You will have to do this for all missing dependencies...
An another way (better way) to solve is download and install the x64 version that should be compatible with your system.
-
Installing the "libgstreamer-plugins-base0.10-0" package fixed this for me
sudo apt-get install libgstreamer-plugins-base0.10-0
@birger.sp that works for me :-) Thx
-
Installing the "libgstreamer-plugins-base0.10-0" package fixed this for me
sudo apt-get install libgstreamer-plugins-base0.10-0
@birger.sp great bro