Google Colab-如何使用代码重启运行时?

时间:2018-10-06 12:00:09

标签: google-colaboratory

我想使用代码重新启动当前运行时(Ctrl + M)。 像这样:

!restart_runtime

有这样的选择吗?

1 个答案:

答案 0 :(得分:2)

停止时,运行时进程将自动重新启动。因此,一种实现restart_runtime的方法是:

import os

def restart_runtime():
  os.kill(os.getpid(), 9)