Reputation: 95
I hope everyone is doing good.
I installed Python a couple of days ago and then I install Anaconda3 2019.
Here is the screenshot of my programs installed on my system.
Now when I am trying to work on Jupyter, it is not opening. I tried to open Jupyter Notebook directly from the start (It showed a terminal opening and closing but after that, Localhost couldn't start). Later I tried through Anaconda Prompt and it gives me this Error.
conda list command shows that Jupyter library is present but I don't know where the problem lies.
These are the paths Environment variable has:
I'm a newbie and playing with python, Jupyter. I will appreciate it if anyone can help me to solve this issue I'm currently facing.
Thanks & Regards
Umar
<<<<<<<<<<<<<<<<<<<<<<<<<<< Tried Suggestions >>>>>>>>>>>>>>>>>>>>>>>>>
Running Command conda install nb_conda produced this error:
Upvotes: 0
Views: 1383
Reputation: 601
Please follow the below steps:
conda activate <env_name>
conda install ipykernel
ipython kernel install --name <env_name> --user
If you are working on base environment, you can specify env_name as base.
Try running jupyter notebook using the command jupyter notebook
Hope this helps.
Upvotes: 1
Reputation: 584
Go to your anaconda prompt and type the command conda install nb_conda
.
Let this install and then try running the command jupyter notebook
.
Let me know if this helps.
Upvotes: 0