Reputation: 21
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
Reputation: 601
Please try the below command:
python -m notebook
This should work without anaconda.
Upvotes: 1