无法为 Drive FUSE 库生成凭据

Unable to Generate creds for the Drive FUSE library

我决定使用colab和google-drive-ocamlfuse来link我的项目到我的驱动器,看了一篇博客后,参考这里http://medium.com/@burakteke/tutorial-on-using-google-colab-for-kaggle-competition-620393c22821

阅读这里的答案后,我修复了它的第一部分以安装保险丝

当我尝试做第三部分时:

# Generate creds for the Drive FUSE library.
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}

它只是保持 运行,我从任何地方都找不到答案...请看这里的图片

与其调试这个第三方包装器,不如使用内置的 Drive FUSE 客户端更简单:

from google.colab import drive
drive.mount('/content/gdrive')

然后,您的文件将可用,您可以在内置文件浏览器中与它们进行交互。