pyinstaller exe 在 sys.exit() 之后不会消失
我有一个用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用 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.
要记住一件事: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.