Sonia
Sonia

Reputation: 195

Empty page show when running jupyter notebook under a virutal env in Anaconda

I used Anaconda on Windows with Python 3.7.

I can run 'jupyter notebook' under root (base) environment and all the notebook files show up on the web browser.

However, when I call 'jupyter notebook' on my virtual environment named 'tensorflow_env'. It shows an empty page on the web browser.

Note that I have installed both jupyter and nb_conda on my tensorflow_env virtual environment.

Any thought? Thank you very much.

Upvotes: 1

Views: 449

Answers (1)

bigonazzi
bigonazzi

Reputation: 834

I had a similar problem and it turned out to be an issue with notebook 5.7.6, downgrading to 5.7.4 fixed the issue for me:

conda install notebook=5.7.4

to see changes remember to clear your cache (ctrl+shift+r)

Upvotes: 2

Related Questions