回答:
実行jupyter kernelspec list
して、すべてのカーネルのパスを取得します。
次に、不要なカーネルをアンインストールします
jupyter kernelspec uninstall unwanted-kernel
古い回答
削除するカーネルに対応するフォルダーを削除します。
ドキュメントには、カーネルが保存される一般的なパスのリストがあります:http : //jupyter-client.readthedocs.io/en/latest/kernels.html#kernelspecs
jupyter kernelspec remove <kernel_name>
現在存在しています。stackoverflow.com
完全を期すために、でカーネルのリストを取得できますがjupyter kernelspec list
、カーネルの1つがこのリストに表示されない場合がありました。Jupyterノートブックを開いてを選択すると、すべてのカーネル名を見つけることができますKernel -> Change kernel
。実行してもこのリストにすべてが表示されない場合はjupyter kernelspec list
、一般的なJupyterフォルダーを調べてみてください。
ls ~/.local/share/jupyter/kernels # usually where local kernels go
ls /usr/local/share/jupyter/kernels # usually where system-wide kernels go
ls /usr/share/jupyter/kernels # also where system-wide kernels can go
また、jupyter kernelspec remove
またはでカーネルを削除することもできますjupyter kernelspec uninstall
。後者の別名ですremove
。コマンドのインラインヘルプテキストから:
uninstall
Alias for remove
remove
Remove one or more Jupyter kernelspecs by name.
jupyterノートブックで実行:
!echo y | jupyter kernelspec uninstall unwanted-kernel
anacondaプロンプトで次を実行:
jupyter kernelspec uninstall unwanted-kernel