Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想隐藏python程序的控制台窗口,所以我将文件扩展名更改为“pyw”,但是当我打开它时,即使我选择用“pythonw.exe”打开它,python IDLE也会出现
如果我在 cmd 中使用“pythonw test.py”,它可以工作。
所以我想知道这有什么问题以及如何解决这个问题,谢谢。
更改打开 python 文件的程序。
假设您使用的是 Windows,右键单击任何 python 文件(在您的情况下是任何 .pyw 文件,而不是 .py),属性,更改Opens with为 pythonw 而不是 IDLE
Opens with
对我来说,我安装了多个导致问题的 Python 版本。一旦我只有一个版本,我就将 pythonw.exe 应用为 .pyw 文件的默认值,并且它可以工作。