Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(3 edits)

Pyinstaller has been a pain in the ass to me in the past, if there is though a possibility to make a .exe file without a console, please let me know as that would be great for me to use in my future projects.

I recommended cx_Freeze as before when i had problems with Pyinstaller, I found that as a substitute, but if it's working completely fine for you, I don't see a reason to switch, as cx_Freeze is hard to set up and takes a long time to compile (also the file size is like, 17mb).


Thanks for the reply!

Wizard

You can get rid of console very easily!

Before Building the File to exe, Just change the python file name  from example.py to example.pyw .(the "w" indicates "without console")

Its That simple!

Now you can, 

Pyinstaller --onefile example.pyw it.

And Boom! Console is Gone!!  =D