更改Python脚本的进程名称
Windows 任务管理器在“进程”选项卡中列出了所有正在运行的进程。
Python 脚本的映像名称始终为 python.exe
或 pythonw.exe
,或 Python 解释器的名称。
除了更改 Python 解释器的名称之外,是否有更好的方法来更改 Python 脚本的图像名称?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我发现没有很好的方法来更改 Windows 中正在运行的进程的名称,但您可以使用 ExeMaker 而不是诉诸 py2exe 打包或复制解释
器 exe 存根使用自己的模块名称来计算调用的 .py 脚本。您应该能够使用 exe 资源编辑器来更改图标。
There's no nice way that I've found to change the name of a running process in Windows, but you can create small .exe stubs with ExeMaker rather than resorting to py2exe packaging or copying the interpreter
The exe stub uses its own module name to calculate the .py script invoked. You should be able to use an exe resource editor to change the icon.
您可以使用 py2exe 将您的 Python 程序转换为独立的可执行文件,并使用您选择的任何名称。
You could use py2exe to turn your Python program into a self-contained executable with whatever name that you choose to give it.