Python terminal window popping up at pygame app run [duplicate]

自闭症网瘾萝莉.ら 提交于 2019-12-08 03:47:18

问题


Possible Duplicate:
How can I hide the console window in a PyQt app running on Windows?

When I double-click in Windows on my pygame app (.py) the desired pygame window opens, but always along with it, an empty terminal window pops up. How can I prevent this?


回答1:


Change the file extension of your file from .py to .pyw.

See Using the Python Interpreter:

2.2.2. Executable Python Scripts

The Python installer automatically associates .py files with python.exe so that a double-click on a Python file will run it as a script. The extension can also be .pyw, in that case, the console window that normally appears is suppressed.



来源:https://stackoverflow.com/questions/12121033/python-terminal-window-popping-up-at-pygame-app-run

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!