Umar
Umar

Reputation: 95

Jupyter Notebook not opening (ImportError: DLL load failed)

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.

Installed programs on 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.

Main Error

conda list command shows that Jupyter library is present but I don't know where the problem lies.

Conda List Command

These are the paths Environment variable has:

enter image description hereenter image description here

Enviorment Variable

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:

enter image description here

Upvotes: 0

Views: 1383

Answers (2)

Lakshmi - Intel
Lakshmi - Intel

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

user9940344
user9940344

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

Related Questions