在安装完jupyter后,有输出代码,但是jypyter notebook 不显示
问题现象
- 发现右上角有提示
connecting to kernel
or
kernel starting
- 页面现象如下
提示
要修复上面 ,需要如下的python包版本
$ pip3 list | grep 'tornado'
tornado 4.5.3
解决文案
卸载 tornado
pip3 uninstall tornado
重新安装 tornado
pip3 install tornado==4.5.3
网友评论