Google Colab Notebook 的外部文件引用配置
Posted sonictl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Google Colab Notebook 的外部文件引用配置相关的知识,希望对你有一定的参考价值。
Google Colab Notebook 的外部文件引用配置
Reference: How to upload the file and read Google Colab
先装工具:
google-drive-ocamlfuse
!apt-get install -y -qq software-properties-common python-software-properties module-init-tools !add-apt-repository -y ppa:alessandro-strada/ppa 2>&1 > /dev/null !apt-get update -qq 2>&1 > /dev/null !apt-get -y install -qq google-drive-ocamlfuse fuse from google.colab import auth auth.authenticate_user() from oauth2client.client import GoogleCredentials creds = GoogleCredentials.get_application_default() import getpass !google-drive-ocamlfuse -headless -id={creds.client_id} -secret={creds.client_secret} < /dev/null 2>&1 | grep URL vcode = getpass.getpass() !echo {vcode} | google-drive-ocamlfuse -headless -id={creds.client_id} -secret={creds.client_secret}
去网页确认一下:
confirm the authentication of this access. Follow the order saying open the link, and you will visit some blue-ish page displaying your key. *
再挂载
!mkdir drive !google-drive-ocamlfuse drive !ls drive/"Colab Notebooks"
就可以了。
以上是关于Google Colab Notebook 的外部文件引用配置的主要内容,如果未能解决你的问题,请参考以下文章
在 VM 引擎中导入 google.colab 不会让我在 Google Colab 中运行 Jupyter Notebook?
在 Python 中嵌入 Matplotlib 动画(google colab notebook)
在 google colab notebook 上安装guidelda时出错
无法在 google colab notebook 中使用 googlesearch 模块中的搜索方法