The kernel has died, and the automatic restart has failed.

使用Jupyter Notebook时出现“The kernel has died, and the automatic restart has failed.”错误解决方案

可能是prompt-toolkit的版本过高导致的,只要降低版本就可以了。

pip install --upgrade prompt-toolkit==1.0.5

解释:

因为安装有jupyter包,这个包依赖prompt-toolkit版本是2.0.0以上的版本; 而ipython包依赖的是1.0.15的版本。 估计是装Jupyter时,将版本更新了,所以运行的时候报错 ,把版本切成1.0.15即可。

你可能感兴趣的:(人工智能,解决方法)