Jupyter 远程服务器访问时报错 500 : Internal Server Error的解决方法

报错是nbconvert 和pandoc不兼容导致, nbconvert 5.4.1版本解决了该问题
解决:输入命令

pip install nbconvert==5.6.1

也可以使用conda安装,命令为

conda install nbconvert-5.6.1 

启动notebook

nohup  jupyter notebook --ip 0.0.0.0 --allow-root  > nohup.file 2>&1 &

你可能感兴趣的:(Jupyter 远程服务器访问时报错 500 : Internal Server Error的解决方法)