如何创建Colab VM的本地版本?

时间:2018-11-07 15:30:27

标签: google-colaboratory

我可以通过colab在Google提供的VM上运行脚本。我也可以通过jupyter在本地运行它,但是要匹配colab VM的设置,需要在我的本地计算机上安装什么?

我可以在colab工作表中键入!pip freeze来查看所有已安装的Python软件包,但是还有什么我应该做的吗?有一种简单的方法可以在本地复制colab VM?

1 个答案:

答案 0 :(得分:0)

您可以将Colab与本地Jupyter安装一起使用。详细说明在这里:

http://research.google.com/colaboratory/local-runtimes.html

简而言之:

  1. 安装Colab Jupyter扩展-

    pip install jupyter_http_over_ws
    jupyter serverextension enable --py jupyter_http_over_ws
    
  2. 使用以下参数启动Jupyter:

    jupyter notebook \
      --NotebookApp.allow_origin='https://colab.research.google.com' \
      --port=8888 \
      --NotebookApp.port_retries=0
    

然后,从连接下拉列表中选择本地运行时选项。

enter image description here