Jupyter From Cmd Line in Windows

前端 未结 8 1042
刺人心
刺人心 2021-01-07 18:08

I cannot get jupyter running from my Command line using:

jupyter notebook

jupyter is not recognised as an internal or external co

8条回答
  •  灰色年华
    2021-01-07 18:49

    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 jupyter if you're using Python3

    Else, if you are using Python2.7 then type pip install jupyter.

    ...Some installation should happen...

    Now retry typing jupyter notebook in the CMD, it should work now.

提交回复
热议问题