jupyter notebookda cannot run after opening

Reason for the error: When installing jupyter notebook, ipykernel is automatically installed, and then a higher version of pyzmq is automatically installed.

Solution strategy: Reduce the pyzmq version, such as installing pyzmq==19.0.2
steps:

pip uninstall pyzmq
pip install pyzmq==19.0.2


After installation, just restart jupyter notebook
 

 

Guess you like

Origin blog.csdn.net/qq_46012097/article/details/123241800