Soumo
Soumo

Reputation: 21

cannot open .ipynb file even if ipython and jupyter is installed in my pc

I have installed ipython, jupyter etc using pip in my windows 7 pc. Now I want to open a .pynb file from command line. When I typed 'jupyter notebook' it is showing: 'jupyter' is not a recognized internal or external command ...... Can you tell where is the problem? Can't I open the file from command line or I have to install an IDE like 'pycharm' or 'anaconda'?

Upvotes: 0

Views: 2894

Answers (1)

Lakshmi - Intel
Lakshmi - Intel

Reputation: 601

Please try the below command:

python -m notebook 

This should work without anaconda.

Upvotes: 1

Related Questions