Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

'Jupyter' is not recognized as an internal or external command

I installed python and jupyter notebook through the Anaconda distribution. I have been successfully using jupyter notebook for weeks and it has run perfectly fine. However, I can only launch a notebook through the Anaconda Navigator GUI.

When I try to run the command (in command prompt) to start a notebook it says

'jupyter' is not recognized as an internal or external command

This is also the same case with Python

'python' is not recognized as an internal or external command

I am using Windows 10. I am assuming its a PATH issue but I have not had any luck with the solutions I found from other posts. I am relatively new to programming and python so any help would be greatly appreciated.

like image 311
BurritoQuest Avatar asked Sep 12 '18 03:09

BurritoQuest


People also ask

How do you fix jupyter is not recognized as an internal or external command?

So in this article, we discussed what causes the '“jupyter is not recognised as an internal or external command” error and we found `two important solutions to get around this issue one of them is by setting the environment variable and another solution was by installing the 'jypter' of course if it was not installed ...

Why is jupyter command not found?

"Command jupyter not found": You may need to add the directory where you installed jupyter or pip to your PATH variable For example, if you successfully installed jupyter but it's complaining that the command is not found, try adding ~/Library/Python/2. XXX/bin and ~/bin to your path.

How do you check if jupyter is installed or not?

If you wish to know where Jupyter isinstalled on your computer, you may run where jupyter in the Command prompt. If you wish to know which Python version is installed, run python or python -V or python --version .

How do I add jupyter to Windows path?

1. Change Jupyter Notebook startup folder (Windows) Copy the Jupyter Notebook launcher from the menu to the desktop. Right click on the new launcher and change the Target field , change %USERPROFILE% to the full path of the folder which will contain all the notebooks.


1 Answers

Yes, This is the problem which I faced also during the installation of Jupyter Notebook. But I know the solution of this. I hope, it also works for you as well.

  1. Open cmd.
  2. Type: pip install notebook.
  3. If you Type: **jupyter notebook** - it always shows an error.
  4. So, Type: python -m notebook.

Image shows running Jupyter Notebook

If you feel that this answer is useful and works for you, I expected. So, please press the Up Button for other peoples. So that they can also get some help.

like image 88
Aakash Garg Avatar answered Oct 14 '22 15:10

Aakash Garg