2018/03/23

Jupyter Notebookを起動するとAttributeError: type object 'IOLoop' has no attribute 'initialized'とエラーが出る

Jupyterをインストール後、Jupyter Notebookを起動すると、下記のようなエラーが出てしまいます。

AttributeError: type object 'IOLoop' has no attribute 'initialized'

GitHubにはissueがすでに上がっているそうで、
https://github.com/ipython/ipython/issues/8374

下記コマンドを実行して、tornadoというソフトをダウングレードすることで、一時的に回避できるそうです。
pip3 uninstall tornado
pip3 install tornado==4.5.3

3 件のコメント:

  1. pip3 のバージョン指定は == にする必要があります。

    pip3 install tornado=4.5.3
    Invalid requirement: 'tornado=4.5.3'
    = is not a valid operator. Did you mean == ?

    pip3 install tornado==4.5.3
    :
    Installing collected packages: tornado
    Successfully installed tornado-4.5.3

    返信削除
    返信
    1. コメント有難うございます。
      修正致しました。

      削除
  2. 助かりました。
    conda民なのでconda install tornado==4.5.3で解決しました。

    返信削除