Jupyter Notebook 500 : Internal Server Error

前端 未结 16 1858
野趣味
野趣味 2020-12-09 08:42

I want to learn how to use Jupyter Notebook. So far, I have managed to download and install it (using pip), but I\'m having trouble opening it.

I am opening it by ty

16条回答
  •  春和景丽
    2020-12-09 09:15

    I am having the same problem but solve it by using python 3.7 with four simple steps:

    step 1:Installing python 3.7 in linux

    sudo apt-get install python3.7
    

    step 2: Installing python3-pip

    sudo apt install python3-pip
    

    step 3: installing jupyter

    pip3 install jupyter
    

    step 4:Strting jupyter notebook server

    jupyter notebook
    

    after starting server and going to localhost:888/tree it show option to create python 3 file after clicking on new button.

提交回复
热议问题