Guy
Guy

Reputation: 91

How to hide the python console window in Pyinstaller

I used pyinstaller -F in order to create one .exe file to run. I would like it to run in as a background process. That means that if one clicks the .exe file, he can only close it from the "PROCESSES". I want the program will run in the background and will not be seen. (As opposed to now, where I see the black console.)

Upvotes: 7

Views: 9254

Answers (1)

jotjern
jotjern

Reputation: 482

I think this will help you.

pyinstaller "filename.filetype" -w -F

Upvotes: 5

Related Questions