-
I am trying to create an installer for my project for which I built a tkinter gui output but wile trying to package it i persistantly get this error and can't seem to solve it. Would appreciate if someone can help point me in the right direction, Thanks
|
Beta Was this translation helpful? Give feedback.
Answered by
rokm
Jun 27, 2024
Replies: 1 comment 1 reply
-
That's because all your modules effectively top-level modules, and so Either:
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
zh-ffmc
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That's because all your modules effectively top-level modules, and so
workflow
from your codebase is triggering a hook forworkflow
package.Either:
workflow
module/home/dev/.local/lib/python3.10/site-packages/_pyinstaller_hooks_contrib/hooks/stdhook/hook-workflow.py
)extra-hooks
, create emptyextra-hooks/hook-workflow.py
inside of it, and pass this directory to pyinstaller via--additional-hooks-dir extra-hooks
(This will run the new no-op hook for work…