当前位置: 代码迷 >> 综合 >> 解决jupyter ipython notebook 的The kernel appears to have died. It will restart automaticall
  详细解决方案

解决jupyter ipython notebook 的The kernel appears to have died. It will restart automaticall

热度:45   发布时间:2023-12-20 09:27:45.0

jupyter做deeplearning作业assignment3的时候用到sklearn库的函数,报错:

The kernel appears to have died. It will restart automaticallly

在CSDN上找一堆资料,最后通过更新库解决了问题,因此稍微总结。

原因:

1.使用的函数的库版本太低。解决方案:观察所使用到的函数,更新所在库一般能解决问题。

conda update mkl

包括sklearn等库

(来源:https://blog.csdn.net/liangdagongjue/article/details/79533538

2.更新ipython notebook。解决方案:

  conda upgrade notebook

       conda upgrade jupyter

(来源:https://blog.csdn.net/wobeatit/article/details/78885339

3.kernel不止python2,存在问题

来源在历史记录中没找到,找到再po。

  相关解决方案