Jupyter Notebook 500 : Internal Server Error

Jupyter Notebook 500 : Internal Server Error_第1张图片

 

1. 这个问题的根本原因在于: pygments 包 版本过高。  

安装pygments == 2.6.1

2.jupyter版本如下

Jupyter Notebook 500 : Internal Server Error_第2张图片

 如果某个版本有冲突,卸载了重新安装一下就行。

安装命令:

 pip install pygments == 2.6.1 -i https://pypi.tuna.tsinghua.edu.cn/simple

另外记录一下安装包经常用的网址

清华 pip install XXXX -i https://pypi.tuna.tsinghua.edu.cn/simple
豆瓣 pip install XXXX -i http://pypi.douban.com/simple/
阿里 pip install XXXX -i http://mirrors.aliyun.com/pypi/simple/
中科大 pip install XXXX -i http://pypi.mirrors.ustc.edu.cn/simple/
 

你可能感兴趣的:(深度学习,jupyter,ide,python)