Skip to content

Instantly share code, notes, and snippets.

@vsay01
Last active December 17, 2019 12:01
Show Gist options
  • Save vsay01/fc0b174d60e3cebe2fa5c3000f622264 to your computer and use it in GitHub Desktop.
Save vsay01/fc0b174d60e3cebe2fa5c3000f622264 to your computer and use it in GitHub Desktop.
# Mount Google Drive
from google.colab import drive # import drive from google colab
ROOT = "/content/drive" # default location for the drive
print(ROOT) # print content of ROOT (Optional)
drive.mount(ROOT) # we mount the google drive at /content/drive
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment