更改Python脚本的进程名称

发布于 2024-08-19 11:02:18 字数 185 浏览 3 评论 0 原文

Windows 任务管理器在“进程”选项卡中列出了所有正在运行的进程。 Python 脚本的映像名称始终为 python.exepythonw.exe,或 Python 解释器的名称。

除了更改 Python 解释器的名称之外,是否有更好的方法来更改 Python 脚本的图像名称?

Windows Task Manager lists all running processes in the "Processes" tab.
The image name of Python scripts is always python.exe, or pythonw.exe, or the name of the Python interpreter.

Is there a nice way to change the image name of a Python script, other than changing the name of the Python interpreter?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

埋情葬爱 2024-08-26 11:02:18

我发现没有很好的方法来更改 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.

泅渡 2024-08-26 11:02:18

您可以使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文