0

I'm trying to use anaconda to setup an environment for jupyter notebook. It's not going well... I've got everything working without anaconda (just on the normal windows terminal). On Anaconda terminal however, whenever I try to install jupyter notebook it gives me an import error (could be circular issue it says). I also cannot open anaconda navigator through either the app or command prompt. I have followed documentation and this video. Please any help would be greatly appreciated, I am going to try uninstalling anaconda and then seeing if that gets me any results...

Tbird DUNKIN
  • 101
  • 1
  • 7

2 Answers2

1

What is the library's name are you trying to import? I am guessing 'jupyter'

Checking your local filenames might be useful. If any files in your project involve the word that is in the import statement, that could prevent the actual jupyter library being imported.

I had the same problem, tried to import numpy and got a similar error. Turns out that I had a file called 'numpy.py' in my project directory. I renamed it and solved the problem.

Ugur
  • 44
  • 7
0

Try to reset pyzmq by doing the following:

pip uninstall pyzmq
pip install pyzmq
Neal Titus Thomas
  • 483
  • 1
  • 6
  • 16