jupyter报错AttributeError: type object IOLoop has no attribute initialized

问题描述:

打开jupyter notebook时,报错

Traceback (most recent call last):
  File "E:\software\Anaconda\Scripts\jupyter-notebook-script.py", line 3, in <module>
    import notebook.notebookapp
  File "E:\software\Anaconda\lib\site-packages\notebook\notebookapp.py", line 40, in <module>
    ioloop.install()
  File "E:\software\Anaconda\lib\site-packages\zmq\eventloop\ioloop.py", line 210, in install
    assert (not ioloop.IOLoop.initialized()) or \
AttributeError: type object 'IOLoop' has no attribute 'initialized'

解决方案(在安装了anaconda的情况下):

1. 降低tornado版本

看了很多博客,大多数都是说tornado版本与jupyter不匹配,安装指定版本的tornado就行

conda install tornado=4.5

2. 升级pyzmq版本

我安装成功之后,jupyter还是打不开,还是报同样的错误。在github上看到了同样的问题,大多数人执行如下命令即可。

conda install -c anaconda pyzmq

问题原因:

有人说问题原因是tornado包是新版本的,而pyzmq或/和jupyter notebook是旧版本。
所以以上两种方法都是统一现有的版本,第一种是统一为旧版本,第二种是统一到新版本。

参考:

https://github.com/jupyter/notebook/issues/3595

你可能感兴趣的:(八阿哥图鉴,anaconda,python,jupyter)