2

I have always opened the jupyter notebooks from the Anaconda prompt. The problem is that whenever I try to open the Jupyter notebook from the command prompt, the following error is displayed:

Picture of the Error shown on my command prompt window

ImportError: DLL load failed: The specified module could not be found.

What am I doing wrong ? What should I do?

1 Answers1

2

Opening Jupyter Notebook from command prompt is useful, especially when you would like to open the Jupyter Notebook from a specific folder.

The following 2 steps might help you to resolve this issue.

  1. open command prompt

    activate base

The prompt might change to begin with "(base)", which is expected. Then type,

Jupyter-notebook

If Jupyter notebook opens up now, this means Jupyter is correctly installed within your conda environment. In OS like Windows 10, it was an expected behavior not to recognize Python outside of Conda environment, which extends to Jupyter Notebook as well.

  • If the 1st step works properly, then add the below paths to your environment variable. If you would not like to add the path to your system environment variable, you can choose to update in your account environment variable.

  • In windows 10 >> search "environments" and "Edit environment variables for your account"

  • Select "PATH" and edit.
  • Add below paths

C:\Users\\Anaconda3; C:\Users\\Anaconda3\Scripts; C:\Users\\Anaconda3\Lib; C:\Users\\Anaconda3\Library\bin; C:\Users\\Anaconda3\Library\mingw-w64\bin;

Now you should be able to open Jupyter Notebook directly from command prompt.

HVS
  • 2,427
  • 3
  • 21
  • 19