Eel And Python - How Can Hide Cmd Window When The App Is Running
I have created a simple html page and used it in a python app with the help of Eel Everything works fine but I want to hide the cmd window that opens up when the python app is runn
Solution 1:
It is normal, because for each program the python console will appear, because you are running it from the python launcher or cmd
If you want to hide it, you have to compile it and select to hide the console in the setup to do that you can use the module auto-py-to-exe (which, btw. is made with eel). It uses pyinstaler. You can also use pyinstaller directly.
Post a Comment for "Eel And Python - How Can Hide Cmd Window When The App Is Running"