How do I access a publicly shared google drive directory in Colab? One option is to:
- Go to
Shared with Me
- Right click on the directory and select
Add a shortcut to drive
- Access the directory the normal way in Colab, inside
/content/drive/My Drive/
from google.colab import drive
drive.mount('/content/drive')
But this has the disadvantage that every user who accesses a notebook I share with them has to go through this process. Any way making this simpler?