libQt5Core.so.5: version `Qt_5' not found
-
I am running an application developed in Qt 5.11 in Ubuntu machine where Qt is not installed. While launching the exe from terminal, getting the below error:
" /usr/lib/x86_64-linux-gnu/libQt5Core.so.5: version 'Qt_5.11' not found" . What i want to do now in order to make my executable run in Linux/ubuntu machine without installing Qt package? -
You need to deploy the executable, for example using linuxdeployqt. Or create a DEB package that will install Qt when your app is being installed. Or compile your app statically (if license permits).
-
- Make sure you don't violate Qt license.
- Look into the documentation. Where else? General guide, Linux-specific guide.
-
@Chithara said in libQt5Core.so.5: version `Qt_5' not found:
I am running an application developed in Qt 5.11 in Ubuntu machine where Qt is not installed. While launching the exe from terminal, getting the below error:
" /usr/lib/x86_64-linux-gnu/libQt5Core.so.5: version 'Qt_5.11' not found" .The error you get is in stark contrast with what you claim. There is a Qt library on that system, quite apparently. However it's almost certainly older than the one your application expects.