Google Colab 连接 Google Drive 的文件

黄正浩
2023-12-01

一、新建新的jupyternotebook,在空白的单元格中输入

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

根据提示,点击网址并输入验证码确定。

二、新建新的空白单元格,输入

!mkdir -p drive
!google-drive-ocamlfuse drive

三、查看drive目录是否被挂载成功

!ls

四、更改工作目录

import os
os.chdir("drive")

 

 类似资料: