My python-program creates a pdf-File (via MikTeX) which is then opened with Okular. The python file works perfectly. However, when I create the binary file (via pyinstaller: pyinstaller -F file.py) on ubuntu (18.04.3), when opening the PDF in Okular it creates the following error message:
"Unable to find the Okular component: The shared library was not found" (see picture)
Any suggestions what I did wrong?
Thx for your help!
I just had a similar error. In spite of the very little detail you provided about your case, I have the feeling that it could be a similar issue as in my case.
In my case, okular was not able to find its component and generator libraries, because my environment was not correctly setup. I managed to resolve it by adding the following to my environment:
(I found this in a file
prefix.sh
from directory of my okular sources. Note, that I am running a custom compiled version. Of course you may have to adapt the paths. In case your okular is usually running normally, you should be able to get the correct configuration by comparing your usual shell environment with the one inside your script.)