安装jupyter notebook启动报错ModuleNotFoundError: No module named ‘jupyter_server.contents‘的解决办法
该问题是traitlets库更新后, 导致旧版本(<6.5.3)的jupyter notebook无法正确引用(这就是Python的勾石兼容性),可以通过降级traitlets库来解决,或者更新jupyter notebook到新版本
1、降级trailets库(推荐更新jupyter notebook):
install traitlets==5.9.0 -c conda-forge
或者
2、重新安装最新的jupyter notebook(版本>6.5.3即可)
conda install jupyter notebook
注意上面两个命令选一个执行就可以了
参考官方的GitHub issue:https://github.com/jupyter/notebook/issues/7048
本文来自博客园,作者:JessieLin,转载请注明原文链接:https://www.cnblogs.com/6543x1/p/18488342