0

I am a beginner in python and started to install Python via the following tutorial:
enter link description here.

I have downloaded the python3.7.5. After installing that, I have moved to command prompt for further tensor flow 2.0 installation. I used the following commands:

pip install tensorflow

then

 pip install jupyter

then

jupyter-notebook.exe

After this command, I got the error

C:\Users\Nafee\AppData\Local\Programs\Python\Python37\Scripts>jupyter-notebook.exe
'jupyter-notebook.exe' is not recognized as an internal or external command,
operable program or batch file.

Please help me to get out this problem.

Ismael Padilla
  • 5,246
  • 4
  • 23
  • 35
Nafees Ahmed
  • 93
  • 12
  • Does this answer your question? ['' is not recognized as an internal or external command, operable program or batch file](https://stackoverflow.com/questions/48321639/is-not-recognized-as-an-internal-or-external-command-operable-program-or-bat) – pptaszni Jan 29 '20 at 14:10

1 Answers1

0

You have to run

jupyter notebook

Not jupyter-notebook.exe

A_kat
  • 1,459
  • 10
  • 17
  • Actually jupyter was not installed correctly. I installed again using `pip install jupyter` . Then used your mentioned command. Now it's working. Thank you. – Nafees Ahmed Jan 30 '20 at 05:23