如何在 Windows 上运行的 PyQt 应用程序中隐藏控制台窗口?
这当然可能吗? 我一直在寻找 PyQt 教程和文档,但找不到答案。 也许我只需要以不同的方式表达我的搜索查询。
[编辑]
感谢 PEZ 的回答 - 更多详细信息,包括在 Win32 上的 Python 编程第 20 章
Surely this is possible? I have been hunting through PyQt tutorials and documentation but cannot find the answer to it. Probably I just need to phrase my search query differently.
[Edit]
Thanks PEZ for the answer - more details including use of the .pyw
extension in Python Programming on Win32 chapter 20
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您应该能够使用 pythonw.exe 运行您的应用程序。
I think you should be able to run your app with pythonw.exe.
执行此操作的一个简单方法是为脚本提供 .pyw 扩展名,而不是通常的 .py。
这与 PEZ 的答案具有相同的效果(使用 pythonw.exe 运行脚本)。
An easy way to do this is to give your script a .pyw extension instead of the usual .py.
This has the same effect as PEZ's answer (runs the script using pythonw.exe).