jupyter notebook使用時に「The kernel appears to have died. It will restart automatically.」というエラーが出た時の対処
エラーが出た状況
環境
macOS Big Sur 11.2
Python 3.7.3
numpy-1.16.2
pandas-0.24.2
matplotlib-3.0.3
Pillow-5.4.1
ソースコード
Kaggleのコンペの問題に取り組む為にjupyter notebookを起動し、必要なライブラリのインポートのために以下のコードを実行しました。
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
%matplotlib inline
すると、以下のエラーが発生してしまいました。
The kernel appears to have died. It will restart automatically.
コードセルの In[]
の部分は In[*]
となっているため、正常に実行できていない様子。
対処
各ライブラリのバージョンをアップグレードすることで、エラーが解消しました。
numpyのアップグレード
pip install --upgrade numpy
pandasのアップグレード
pip install --upgrade pandas
matplotlibのアップグレード
pip install --upgrade matplotlib
エラーが解消した時の各ライブラリのバージョン
numpy-1.20.1
pandas-1.2.2
matplotlib-3.3.4
Pillow-8.1.0
Author And Source
この問題について(jupyter notebook使用時に「The kernel appears to have died. It will restart automatically.」というエラーが出た時の対処), 我々は、より多くの情報をここで見つけました https://qiita.com/TsukasaHasegawa/items/df8678fcdf066d5eadc6著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .