以下是pyprocessing Usage Instructions wiki:
的引用原则上,run()不会返回,但您可以通过键入ESC键来终止应用程序。
如果我以交互方式开始pyprocessing(不按this SO question使用subprocess.call
),则Escape键不会阻止该过程:
>>> from pyprocessing import *
>>> # At this point, nothing will close the pyprocessing window except a force-quit
... # making debugging a pyprocessing app pretty hard
有没有办法在从交互式python shell启动后终止pyprocessing进程?