문제

I have compiled my python script in an .exe file via PyInstaller.

The problem is that, now when running the .exe application, two windows are opened, one is the GUI interface which is ok, but the other is kind of windows command window, which I would like not to open.

Would it be possible?

도움이 되었습니까?

해결책

If you're using PyInstaller try to use -w option when building your app.

다른 팁

If you are using py2exe,

setup(windows=['your_code.py'], ...)

instead of console

See Make a py2exe exe run without a console?

UPDATE

pyinstaller manual says

 -w, --windowed, --noconsole 

use a windowed subsystem executable, which on Windows does not open the console when the program is launched. This option is mandatory when creating .app bundle on Mac OS X.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top