标签: google-colaboratory
我想使用代码重新启动当前运行时(Ctrl + M)。 像这样:
!restart_runtime
有这样的选择吗?
答案 0 :(得分:2)
停止时,运行时进程将自动重新启动。因此,一种实现restart_runtime的方法是:
restart_runtime
import os def restart_runtime(): os.kill(os.getpid(), 9)