Hi. Packaging my application works fine but when trying to run the produced appimage I get an error which I think is related to pillow because of the referenced library in the output.
Traceback (most recent call last):
File "/tmp/.mount_qcomicOkkPRb/usr/lib/python3.9/runpy.py", line 197, in _run_module_as_main
return _run_code(code, main_globals, None,
File "/tmp/.mount_qcomicOkkPRb/usr/lib/python3.9/runpy.py", line 87, in _run_code
exec(code, run_globals)
File "/tmp/.mount_qcomicOkkPRb/usr/app/qcomics/__main__.py", line 1, in <module>
from qcomics.app import main
File "/tmp/.mount_qcomicOkkPRb/usr/app/qcomics/app.py", line 9, in <module>
from qcomics.reader import Reader
File "/tmp/.mount_qcomicOkkPRb/usr/app/qcomics/reader.py", line 4, in <module>
from PIL import Image
File "/tmp/.mount_qcomicOkkPRb/usr/app_packages/PIL/Image.py", line 114, in <module>
from . import _imaging as core
ImportError: libtiff-102594ad.so.5.7.0: ELF load command address/offset not properly aligned
Hi. Packaging my application works fine but when trying to run the produced appimage I get an error which I think is related to pillow because of the referenced library in the output.