Jupyter | The kernel appears to have died. It will restart automatically |

前端 未结 8 1398
醉酒成梦
醉酒成梦 2020-12-16 13:11

I have been running a particular python script for some time. All of the script had been running perfectly fine (including in Jupyter) for many months before this. Now, some

相关标签:
8条回答
  • 2020-12-16 13:17

    This issue happens when I import sklearn PCA before numpy (not sure reverse the sequence will solve the problem)

    But later I solved the issue by reinstalling numpy and mkl: conda install numpy and conda install -c intel mkl

    0 讨论(0)
  • 2020-12-16 13:20

    install library with conda instead pip this work for me

    0 讨论(0)
  • 2020-12-16 13:21

    Reinstall your library with conda instead of pip.

    0 讨论(0)
  • 2020-12-16 13:22

    To solve this problem, just upgrade the numpy library using this following command :

    conda install numpy if you are using anaconda

    or

    pip install -U numpy if not

    0 讨论(0)
  • 2020-12-16 13:26

    I tried conda install tensorflow which solved my problem.

    0 讨论(0)
  • 2020-12-16 13:30

    conda install -c anaconda keras

    this command worked for me

    0 讨论(0)
提交回复
热议问题