s3contents icon indicating copy to clipboard operation
s3contents copied to clipboard

GCSContentsManager throws up a popup saying `Directory Not Found`

Open jayasimha-raghavan-unskript opened this issue 2 years ago • 1 comments

I am trying to use Google Object Store with Jupyterlab and S3Contents[gcs] package. I see that the Notebook gets loaded and I am able to Read/Write to the Object store. However, when I open the Notebook I see this popup

Screenshot 2022-11-04 at 12 30 19 PM

How do i disable this popup?

In a codeblock in the README there is an example on how to fix this popup:

# Fix JupyterLab dialog issues
c.ServerApp.root_dir = ""

For my environment, this fix did not work, since my kernels would not load if I used this config. I had to change it to:

# Fix JupyterLab dialog issues
c.ServerApp.root_dir = "/"

BlessedDisco avatar May 24 '23 09:05 BlessedDisco