Anaconda jupyter notebook kernel error solutions

1. listed first list of kernel available,

2. Delete the original kernel;

3. Check whether there is a ipython anaconda in the kernel exists.

4. Re-install the kernel.

Specific command is as follows:

$ jupyter kernelspec list
Available kernels:
python3 /home/miracode2033/anaconda3/share/jupyter/kernels/python3
$ rm -r /home/miracode2033/anaconda3/share/jupyter/kernels/python3
$ jupyter kernelspec list
Available kernels:
python3 /home/miracode2033/anaconda3/lib/python3.6/site-packages/ipykernel/resources
$ python -m ipykernel install --user
Installed kernelspec python3 in /home/miracode2033/.local/share/jupyter/kernels/python3
$

 

He published 185 original articles · won praise 55 · views 30000 +

Guess you like

Origin blog.csdn.net/IT_flying625/article/details/104078033
Recommended