0
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

ColabとgoogleDriveの関係

Last updated at Posted at 2021-04-18

SS 192.png ColabにマウントしたgoogleDriveと自分のgoogleDriveの関係をわかりたい。

##やること
Google ColaboratoryにGoogleDriveをマウントして、
それと自分が普段使っているGoogleDriveの関係を把握します。

##Google Colaboratoryとは?
割愛します。
Google Colaboratoryにログインして新規ファイルを開いた後という前提で説明します。

##ColaboratoryにGoogleDriveをマウントする

Colabo環境にGoogleDriveをマウントするには、

Colab
from google.colab import drive
drive.mount('/content/gdrive') #(gdriveの部分は任意の文字で良い)

として、表示されるリンクをクリックして認証。
表示されたキーをコピーし、colabに戻って打ち込めばドライブのマウントはOK。

##GoogleDriveがマウントされた場所を確認する

Colab
! ls /content

として、現在のColab環境のディレクトリに何があるかを確認します。
gdrive sample_data 
と表示されるはずです。
(ちなみに /content がColab環境のデフォルトのディレクトリ)

Colab
! ls gdrive

とすると
MyDrive
と表示されます。このMyDriveが普段使っている自分のgoogleDriveのディレクトリ第一階層に対応しています。

##GoogleDrive(MyDrive)の中身を見る

Colab
! ls gdrive/MyDrive

こうすると、自分が使っているgoogleDriveの中身がリストで表示されます。これで一安心です。
パスを指定すればgoogleDriveに自分で入れたファイルにColabからアクセスできるはずです。

0
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?