jupyter / notebook

Jupyter Interactive Notebook
https://jupyter-notebook.readthedocs.io/
BSD 3-Clause "New" or "Revised" License
11.6k stars 4.86k forks source link

No kernel installed error #5273

Open mebaz opened 4 years ago

mebaz commented 4 years ago

With python 3, anaconda, and jupyter notebooks installed, I get the error that the kernel is not installed. tried the remedy previously posted but still get error. Any suggestions welcome. Jupyter_Notebook_Error_kernel.txt

kevin-bates commented 4 years ago

This is the only posting to this issue, so its difficult to know what you mean by "tried the remedy previously posted".

At any rate, looking at your text file, it looks as though your initial installation of notebook must have ran into issues since both ipykernel and jupyter client should have entries. I recommend one of the following actions, depending on your configuration...

pip install notebook --upgrade

or, for conda envs,

conda update -c conda-forge notebook

after which, jupyter --version should show entries for ipykernel and jupyter client.