pyinstaller exe 在 sys.exit() 之后不会消失

发布于 2024-08-19 00:57:05 字数 163 浏览 4 评论 0原文

我有一个用 pyinstaller 编译的cherrypy 应用程序。一个函数执行以下操作:

cherrypy.engine.stop()
sys.exit()

cherrypy 引擎毫无问题地停止,但该进程实际上并没有终止,我不明白为什么。

I have a cherrypy app compiled with pyinstaller. One function does the following:

cherrypy.engine.stop()
sys.exit()

the cherrypy engine stops without problem, but the process doesn't actually die and I can't figure out why.

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

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

发布评论

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

评论(2

半窗疏影 2024-08-26 00:57:05

尝试使用 os._exit(),这是一个真正的系统退出。不过,我不明白为什么 PyInstaller 在进程退出时应该改变一些事情。

Try with os._exit(), which is a real system exit. I can't see why PyInstaller should change a thing when it comes to process quitting, though.

毅然前行 2024-08-26 00:57:05

要记住一件事:sys.exit() 实际上并不会终止进程:它会引发 SystemExit,这通常会导致进程结束,但不是必须的。

One thing to keep in mind: sys.exit() doesn't actually kill the process: it raises SystemExit, which usually results in the process ending, but doesn't have to.

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