First time here? Checkout the FAQ!
x
+1 vote
3k views
asked in General by (1.4k points)  
Whener I run Jupyter notebook there are some kernels that do not exist on system and generate errors. How can I remove them?
  

1 Answer

0 votes
answered by (115k points)  

You can see the list of installed kernels:

jupyter kernelspec list

And then remove those you want with follows (replace the name of the kernel you want to remove in following command)

jupyter kernelspec remove kernel
...