Persistent authorisation for mounting Google Drive in Google Colab [duplicate]

一个人想着一个人 提交于 2020-08-21 04:42:33

问题


I'm using Google Colab and need to restart my notebook at least once a day due to their usage limits.

To mount my Google Drive I have the following code:

from google.colab import drive
drive.mount('drive')

I then get a prompt:

Go to this URL in a browser: https://accounts.google.com/o/oauth2/auth?client_id=xxxxxxxxx....

Enter your authorization code: ___________________________________________________


How can I authorise only once and have that authorisation remembered?

Ideally, that authorisation will have already happened as I'm signed in to Gmail and I can just specify the account email address of the Drive to mount.

However any solution of persistent authorisation where I don't store the auth code in the notebook would be great.


回答1:


You can't set it to only authenticate once and stay that way for a new runtime, because Colab runs on a VM that is recycled periodically. You can make sure force_remount is set to False so it doesn't unnecessarily ask you to reauthorize:

drive.mount('/content/gdrive', force_remount=False)

But any time you reset the runtime, you will need to reauthenticate with a different authorization code.



来源:https://stackoverflow.com/questions/53752102/persistent-authorisation-for-mounting-google-drive-in-google-colab

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!