Can’t open Jupyter notebook with Anaconda

It seems to be a problem with the default installation of Anaconda. So, I removed the pyzmq package, which seems to be the problematic one.

This is what I have done:

  1. conda uninstall pyzmq (This also removes jupyter related packages!)
  2. conda install pyzmq (to reinstall it)
  3. conda install jupyter (to reinstall jupyter related packages)

Now I can open Jupyter Notebook!

Leave a Comment