Google Colab使用 一

  • 本地运行
    借助 Colaboratory,使用 Jupyter 连接到本地运行时
  1. 本机安装Jupyter
  2. 安装并启用jupyter_http_over_ws jupyter 扩展程序
pip install jupyter_http_over_ws
jupyter serverextension enable --py jupyter_http_over_ws
  1. 启动服务器并进行身份验证
jupyter notebook \
  --NotebookApp.allow_origin='https://colab.research.google.com' \
  --port=8888 \
  --NotebookApp.port_retries=0

在 Colaboratory 中,点击“连接”按钮,然后选择“连接到本地运行时…”。在随即显示的对话框中输入上一步中的端口,然后点击“连接”按钮。完成此操作后,您应该就已经连接到本地运行时了。

Google Colab

from google.colab import files 
files.upload()
files.download()

你可能感兴趣的:(Google Colab使用 一)