Add image to colab from Gdrive easily?

hi , anyone know how to add image from google drive to colab easily?
I checked google but none of the recommendations work.
Want to write all of my blog in colab (Notebook) and then post it.

Hey,
you can mount the google drive of the account you are logged into colab with:

from google.colab import drive
drive.mount('/content/gdrive')

The contents of your drive will be at /content/gdrive/MyDrive

1 Like