解决jupyter notebook无法连接/ jupyter连接不到kernel解决方案

连接不到的主要原因是各个包资源之间版本不配的问题!我尝试高更以下安装的包的版本最终实现正常连接!

1:常见的报错情况:

1.RuntimeWarning: Enable tracemalloc to get the object allocation traceback

2.A connection to the notebook server could not be established. The notebook will continue trying to reconnect

3.Enable tracemalloc to get the object allocation traceback

4.TypeError: __init__() got an unexpected keyword argument 'io_loop' 

2: jupyter连接不到kernel解决方案方案:

1.如果你的python版本是3.7,首先查看一下pyzmq的版本,把pyzmq的版本更改到19.0.2

 pip uninstall pyzmq

pip install pyzmq==19.0.2

 

2.查看自己的ipykernel的版本,如果ipykernel的大于5.0,可以把ipykernel的版本更改到4.9.0

pip uninstall ipykernel

pip install ipykernel==4.9.0

3.在jupyter启动时,报错TypeError: __init__() got an unexpected keyword argument 'io_loop' 

1. pip list  查看tornado版本,找到tornado版本的版本,

如果大于6.0.0以上,先卸载tornado:pip uninstall tornado,

安装低版本的tornado:pip install tornado==4.2 

你可能感兴趣的:(jupyter,ide,python,kernel)