79791356

Date: 2025-10-15 15:44:39
Score: 0.5
Natty:
Report link

Since JupyterLab v4.3 you can finally do this by setting skipKernelRestartDialog to true (thanks to primfaktor for pointing to the GH issue).

You can do this either directly in the UI ("Settings" > "Settings Editor"), then select "Kernel dialogs" and check the checkbox for "Skip kernel restart Dialog".

Or, you can directly set the value in JSON in the appropriate config file, e.g., at ~/.jupyter/lab/user-settings/@jupyterlab/apputils-extension/sessionDialogs.jupyterlab-settings:

{
    "skipKernelRestartDialog": true
}

Your path may differ, call jupyter --paths to check.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: nullvector