I want to run jupyter notebook, but the Mac I'm on has a messed up Anaconda environment. The old owner uninstalled some packages that I'd like to use-- jupyter notebook, pyzmq, etc. I want to use jupyter notebook, but after I tried to reinstall those packages manually using:
pip install jupyter
pip install pyzmq
I get errors when I run: jupyter notebook
:
Traceback (most recent call last):
File "//anaconda/bin/jupyter-notebook", line 4, in <module> import notebook.notebookapp
File "//anaconda/lib/python2.7/site-packages/notebook/notebookapp.py", line 40, in <module> ioloop.install()
File "//anaconda/lib/python2.7/site-packages/zmq/eventloop/ioloop.py", line 210, in install assert (not ioloop.IOLoop.initialized()) or \
AttributeError: type object 'IOLoop' has no attribute 'initialized'
Can I just reinstall Anaconda again (or do I have to uninstall anaconda somehow and install over a clean system)?