Jupyter Notebook 500 : Internal Server Error

前端 未结 16 1793
野趣味
野趣味 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:06

    I had the same problem and was a bit painful until I managed to fix it. The magic line the worked for me was

    conda install -c conda-forge jupyter_contrib_nbextensions 
    
    0 讨论(0)
  • 2020-12-09 09:10

    Was having a similar problem. Fixed it after upgrading ipython with this command

    sudo pip install --upgrade "ipython[all]"

    Note: make sure to type ipython with double quotes and [all]

    0 讨论(0)
  • 2020-12-09 09:10

    try upgrading jupyter hub first

    pip install --upgrade jupyterhub
    
    
    pip install --upgrade --user nbconvert
    

    worked for me on windows 10 as well.

    0 讨论(0)
  • 2020-12-09 09:11

    I had this issue as of 22/03/2019, and what worked for me was updating conda and then upgrading jupyter using pip:

    conda update --all
    pip install jupyter --upgrade
    
    0 讨论(0)
  • 2020-12-09 09:11

    Use this ::

    python2 -m pip install ipykernel
    python2 -m ipykernel install --user
    
    python3 -m pip install ipykernel
    python3 -m ipykernel install --user
    
    0 讨论(0)
  • 2020-12-09 09:12

    I had the same problem and my solution was update the Jinja2 package to version Jinja2-2.8.

    To update it I used the easy_install command as follow:

    sudo easy_install -U python-jinja2[all]
    

    After that the 500 : Internal Server Error was fixed.

    0 讨论(0)
提交回复
热议问题