I am designing a desktop application using python and PyQT in visual studio IDE and my concern is after the execution of code ,the command prompt window pops-up and later the application window i need to prevent command prompt window from popping up.How do I do this?
Asked
Active
Viewed 69 times
1 Answers
2
If you set the file's extension to be .pyw and not .py it should run with pythonw.exe and not show a cmd window.
This thread explains it: How can I hide the console window in a PyQt app running on Windows?

ProgrammingStuff
- 21
- 3