jupyter notebook和tornado版本不对应问题(利用清华镜像进行pip下载)

一、问题

可能是因为之前改过python版本,今天打开jupyter notebook的时候闪退了。

打开cmd,输入jupyter notebook时,报了如下的错误:

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

查过之后发现是因为:jupyter notebooktornado版本不对应

二、解决

cmd中输入pip install tornado==4.5.1(这个版本是可以打开的jupyter notebook的)。如果出现什么HTTP...Read time out报错(报错界面关了,只能这样描述一下了。。。),可以利用清华镜像下载。用法如下:

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple <包名>

你可能感兴趣的:(环境配置)