我在树莓派上尝试a python tutorial,并且经常发现CTRL+C
或从菜单中选择shell > interrupt execution
,不会停止正在运行的脚本。
当我关闭整个窗口时,我会收到警告:your program is still running, do you want to kill it?
,但看起来脚本甚至会在窗口关闭时运行,因为光标会变为所有python窗口的沙漏。
如何强制在树莓上停止python脚本?
答案 0 :(得分:0)
尝试在命令行中执行命令ps -ax | grep python
以查找脚本的进程ID。找到后,使用此命令sudo kill <process_id>