I cannot get jupyter running from my Command line using:
jupyter notebook
jupyter is not recognised as an internal or external co
Try to open it using the Anaconda Prompt. Just type jupyter notebook and press Enter.
Anaconda Prompt has existed for a long time and is the correct way of using Anaconda. May be you have a broken installation somehow.
Try this, if the above doesn't work-
In the Command Prompt type,
pip3 install jupyterif you're using Python3Else, if you are using Python2.7 then type
pip install jupyter.
...Some installation should happen...
Now retry typing
jupyter notebookin the CMD, it should work now.