win10下python3.8运行jupyter notebook时报NotImplementedError错误解决办法

我是研究僧i 提交于 2019-12-20 19:44:00

win10下python3.8运行jupyter notebook时报NotImplementedError错误解决办法

win10安装jupyter后,启动jupyter notebook报错:NotImplementedError.
在这里插入图片描述
解决办法:
在c:\users\user\appdata\local\programs\python\python38\lib\site-packages\tornado\platform\asyncio.py 下添加如下内容:

import sys

if sys.platform == 'win32':
    asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())

随后终端启动jupyter notebook 成功,完美解决。

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!