remove kernel on jupyter notebook

后端 未结 7 1203
星月不相逢
星月不相逢 2020-12-22 15:16

How can I remove a kernel from jupyter notebook?

I have R kernel on my jupyter notebook. Recently kernel always dies right after I open a new notebook.

相关标签:
7条回答
  • 2020-12-22 15:50

    There two ways, what I found either go to the directory where kernels are residing and delete from there. Secondly, using this command below

    List all kernels and grap the name of the kernel you want to remove

     jupyter kernelspec list 
    

    to get the paths of all your kernels.

    Then simply uninstall your unwanted-kernel

    jupyter kernelspec remove kernel_name
    
    0 讨论(0)
提交回复
热议问题