如何关闭转换为 .exe 的 python 文件?

How can i close a python file which is converted to the .exe?

我使用 pyinstaller 将我的 python 文件转换为 .exe file.But 我不知道不知道如何关闭 that.I已经搜索过了,但我找不到我要找的东西 for.I 用这条线来转换我的 main.py 文件到 .exe

pyinstaller --onefile -w main.py

我如何关闭 main.exe,目前是 运行?

My python files

编辑: 我试图删除此文件,但 windows 说“它是 运行,因此您必须关闭它才能删除它”

您可以在任务管理器中终止该任务或简单地重新启动您的计算机

对于代码的未来 运行,您可以从 pyinstaller 参数中删除 -w,这样终端就会出现。