Anacondajupyterノートブックカーネルエラーソリューション



Anaconda Jupyter Notebook Kernel Error Solution



1.最初に利用可能なカーネルリストをリストします。

2.元のカーネルを削除します



3.anacondaのipythonにカーネルがあるかどうかを確認します。

4.カーネルを再インストールします。



具体的なコマンドは次のとおりです。

$ 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 $