Convert .pyw to .exe

If I use py2exe to convert .pyw to .exe, will it work when the console is open? I have some Python files that I want to run in the background, which I will need on computers that don't have Python installed.

+3
source share
1 answer

Use the parameter windows(instead console) in the py2exe configuration and the terminal window will not appear.

Make py2exe exe without console?

+6
source

All Articles