Jupyter notebook: TypeError: __init__() got an unexpected keyword argument 'io_loop'

后端 未结 4 1411
清歌不尽
清歌不尽 2020-12-17 08:46

I recently installed jupyter notebooks on my macbook pro. When I create a new notebook, I see the following exception coming continuously on the terminal where I started the

4条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-17 09:42

    Ran into this error after updating the ipykernel module.

    After upgrading the jupyter module it started without errors. On Ubuntu I ran the following to update jupyter:

    sudo -H pip install jupyter
    

    Or for Python3

    sudo -H pip3 install jupyter
    

提交回复
热议问题