Hi, One way to do this is through gcsfuse <https://cloud.google.com/storage/docs/gcs-fuse>. Once you create an AI Platform notebook, click on the notebookâs name, ssh into the VM and follow the gcsfuse installation instructions for Ubuntu and Debian <https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/docs/installing.md#ubuntu-and-debian-latest-releases> .
Once gcsfuse installed, run the commands below to mount your bucket to the Jupyter notebook: $ cd /home/jupyter/ $ sudo -s su jupyter $ mkdir MOUNT_DIRECTORY $ /usr/bin/gcsfuse GCS_BUCKET MOUNT_DIRECTORY Afterwards, in your Jupyter notebook interface, you will find a MOUNT_DIRECTORY folder which will be synced to your GCS bucket. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/2492987c-ea29-405d-a50a-f26e80ec14bb%40googlegroups.com.
