Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I list all existing workspaces in JupyterLab?

How can I list all existing workspaces in JupyterLab?

I know that one can view the current workspace name in the URL:

enter image description here

enter image description here

like image 323
Franck Dernoncourt Avatar asked Oct 05 '18 00:10

Franck Dernoncourt


People also ask

How do I open workspace in JupyterLab?

You start with a default Workspace: http://localhost:8888/lab. To create a new Workspace (or access the existing one) simply add to the URL: /workspaces/blog. With this, you would access (or create) a blog Workspace. A full URL is http://localhost:8888/lab/workspaces/blog.

Where are JupyterLab settings stored?

JupyterLab User Settings Directory The user settings directory contains the user-level settings for Jupyter extensions. By default, the location is $HOME/. jupyter/lab/user-settings/ , where $HOME is the user's home directory.

What are jupyter workspaces?

Jupyter Workspaces in Domo is a web-based interactive development environment for Jupyter notebooks, code, and data.


1 Answers

I think you could try

ls ~/.jupyter/lab/workspaces

Each time u create a new workspace, there will be a corresponding file generated here. More detailed docs are here

like image 71
Yuze Ma Avatar answered Sep 29 '22 12:09

Yuze Ma