-
I am running the latest Pyinstaller version to deploy a Kivy app. I am using all possible arguments to remove the console, even adding the args to the spec files, but it still opens the console. I am using Git Actions and a Yaml file to do this deployments so it could be that, running on Here is my spec:
Here is my Yaml:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 11 replies
-
Are you sure it's your application's console and not that of a subprocess? That catches people out quite often. e.g. #8748 |
Beta Was this translation helpful? Give feedback.
-
Surely setting Otherwise, I imagine that your |
Beta Was this translation helpful? Give feedback.
Surely setting
console=False
should be a good start?Otherwise, I imagine that your
Build with PyInstaller
creates a noconsole build, and then you overwrite the spec (or rather, you seem to be appending to it?), and if your effective spec is what you have shown us, thenRecompile with .spec
overwrites the previous noconsole build with a console one.