0

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

从这里阅读答案后,我已经修复了安装 fuse 的第一部分Unable to locate package google-drive-ocamlfuse ,突​​然停止工作

当我尝试做第三部分时:

# 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}

它只是继续运行,我从任何地方都找不到答案......请看这里的图片在此处输入图像描述

4

1 回答 1

2

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

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

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

在此处输入图像描述

于 2018-09-27T16:21:00.370 回答