79138193

Date: 2024-10-29 16:54:03
Score: 0.5
Natty:
Report link

This is happening because PyInstaller doesn’t automatically include system-installed libraries when bundling your Python script. You can explicitly add it using --hidden-import option, so your run command would be:

run: pyinstaller -F --hidden-import=gi script.py

Or you could use custom hook

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ali-Ibrahim