无法为Drive FUSE库生成凭据

时间:2018-09-27 10:01:28

标签: jupyter google-colaboratory kaggle medium.com

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

从这里Unable to locate package google-drive-ocamlfuse , suddenly stopped working

看完答案后,我已经开始固定其第一部分来安装保险丝。

当我尝试做第三部分时:

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

它一直在运行,我发现任何地方都没有麻烦...请在此处查看图片enter image description here

1 个答案:

答案 0 :(得分:2)

与其调试此第三方包装,不如使用内置的Drive FUSE客户端:

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

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

enter image description here