是否可以通过选择ipython
>重新启动Kernel
内核。来自笔记本GUI的Restart
,但是在笔记本单元中执行命令?
答案 0 :(得分:10)
正如Thomas K.所说,以下是从键盘重启ipython
内核的方法:
import os
os._exit(00)
答案 1 :(得分:4)
为了定义一个重新启动Jupyter内核的函数,我已经成功使用了:
from IPython.display import display_html
def restartkernel() :
display_html("<script>Jupyter.notebook.kernel.restart()</script>",raw=True)
然后打电话
restartkernel()
何时重新启动。
答案 2 :(得分:2)
import IPython
IPython.Application.instance().kernel.do_shutdown(True) #automatically restarts kernel