Hi. This issue is indicative of the program that Jupyter server is launching corresponding to your kernel is not running. The
is responsible for detecting unexpected process termination and will attempt to restart the process up to 5 times before giving up. As a result, you should probably troubleshoot this from that aspect.
To locate the problematic command, follow the instructions in the last paragraph of this section of the documents:
https://jupyter-notebook.readthedocs.io/en/latest/troubleshooting.html#python-environments. It's unlikely that your issue is related to Python environments, but the instructions for locating the program (in the
argv stanza of the
kernel.json file) remain applicable. Once the program has been identified, you might try starting it from the shell or some other way, to get more information as to why it doesn't remain running. My guess is that there's a dependency that is not installed or available to that environment (so, I suppose it
could be related to the python environment).
I would also recommend adding
--debug to your
jupyter lab start command to see if any DEBUG logging provides additional insights.