Google Colab挂载drive上的数据文件

Google Colab是完全云端的,所以,每次如果想让他访问谷歌云盘的内容,必须要先进性授权操作,直接在colab的jupyter中进行绑定授权操作

每次在Google Colab中打开notebook文件时,都必须重新执行命令获得授权。

获取授权脚本代码

1
2
3
4
5
6
7
8
9
10
11
12
!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}

期间会输入两次授权码,点击相应链接复制即可

挂载到drive上

1
2
!mkdir -p drive
!google-drive-ocamlfuse drive

切换到工作文件夹

1
2
3
4
# 指定当前的工作文件夹
import os
# google drive中的文件路径为/content/drive
os.chdir("/content/drive/Colab")

也可以使用%cd切换工作路径,推荐使用

几个常用命令

  • %cd切换工作目录
  • !ls查看当前目录下的文件
  • !pwd查看当前的工作路径

参考文档

谷歌云盘Colaboratory如何载入文件