The kernel has died, and the automatic restart has failed.问题的解决

问题描述
打开jupyter notebook遇到的问题:内核已死亡,自动重启失败。
The kernel has died, and the automatic restart has failed.问题的解决_第1张图片
解决方法一
可能是版本过低的问题,在anaconda Prompt 中分别输入如下命令:

pip upgrade notebook
pip upgrade jupyter

从网上看到的这个方法,但是该方法对本人来说没有用。

解决方法二
可能prompt-toolkit版本过高导致,所以降低该版本就可以了,如输入代码:

pip install --upgrade prompt-toolkit==2.0.4

该方法解决了本人的jupyter遇到的这个问题。

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