+ 3
How to run app without openning cmd?
I creat an app with python and make it exe. but when run it cmd open with app. how can solve this??
7 Respuestas
+ 7
Try adding -w option to the command:
pyinstaller -w myscript.py
+ 6
Which builder did you use to make it an .exe? You might want to check its documentation on how to disable the cmd from running.
+ 6
No problem, more info here:
https://pythonhosted.org/PyInstaller/usage.html
+ 3
Did you make an UI for it ? how, what did you use ?
+ 1
with pyinstaller, can help me please
+ 1
thank you kuba, I will test that, Im sure that will work ;))
+ 1
can you help about other my questions?