remove kernel on jupyter notebook

后端 未结 7 1253
星月不相逢
星月不相逢 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
    

提交回复
热议问题