将 google colab 与 google drive 连接使用

该博客介绍了如何在Google Colaboratory (Colab) 中安装并使用google-drive-ocamlfuse来挂载Google Drive。步骤包括添加PPA源,安装必要的软件,授权Colab访问Google Drive,最后成功挂载Drive到Colab工作目录,以便于读写文件。
摘要由CSDN通过智能技术生成

在 colab 中执行:

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

根据提示一步步执行授权操作,看到 Please enter the verification code: Access token retrieved correctly. 提示之后执行以下代码

!mkdir -p drive

!google-drive-ocamlfuse drive

import os

os.chdir("drive/Colab Notebooks")

完成

参考文章:colab读取google drive的文件 - 知乎20200528更新:目前colab已经集成加载google drive云端硬盘的功能了,只要点下图中的按钮就行,不用以前那些麻烦的操作了(下图中drive目录就是加载好的谷歌云盘): ---------------------------------------以下…https://zhuanlan.zhihu.com/p/62138867

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值