Last active
December 17, 2019 12:01
-
-
Save vsay01/fc0b174d60e3cebe2fa5c3000f622264 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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