ImportError: No module named notebook.notebookapp

后端 未结 6 1258
萌比男神i
萌比男神i 2020-12-12 15:47

What do you recommend guys for this error when I type in console ipython notebook and got

ImportError: No module named notebook.notebook

6条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-12 16:33

    if you are using python version 2

    pip install jupyter

    in case using python 3.x

    pip3 install jupyter

    to be on the safe side also check that notebook module is installed or not

    pip install notebook

    or

    pip3 install notebok

提交回复
热议问题