I have encountered an issue with logging in to JupyterLab (v3.5) lately. Upon investigation, I discovered that jupyter notebook list --json is returning empty. Based on this Stack Overflow post, we need to use jupyter server list --json for JupyterLab versions above 3.0.
I tested (setq ein:jupyter-server-use-subcommand "server"), and it resolved the issue.
Therefore, I created this PR to add some description of this solution.
I have encountered an issue with logging in to JupyterLab (v3.5) lately. Upon investigation, I discovered that
jupyter notebook list --json
is returning empty. Based on this Stack Overflow post, we need to usejupyter server list --json
for JupyterLab versions above 3.0.I tested
(setq ein:jupyter-server-use-subcommand "server")
, and it resolved the issue.Therefore, I created this PR to add some description of this solution.