jupyter 出现kernel error解决方案

先检查是否有出现此问题,通过下面排错链接,看自己是否有文件名不对应问题。
排错
没有的话:
问题可能出现在版本冲突,在Anaconda环境页面可以找到存在,jupyter 1.0.0版本。
单纯卸载是没有用的。
通过下列步骤来进行操作。
打开Anaconda prompt 运行如下命令:

pip uninstall jupyter -y
pip uninstall jupyter_core -y
pip uninstall jupyter-client -y
pip uninstall jupyter-console -y
pip uninstall notebook -y
pip uninstall qtconsole -y
pip uninstall nbconvert -y
pip uninstall nbformat -y

操作完成重新打开Anaconda Navigator ,无需再次安装jupyter,直接打开,可以看到kernel error标记消失,问题解决。

你可能感兴趣的:(python进阶,jupyter,python,tensorflow)