1、报错安装过程
我直接是pip install jupyter 进行的安装,如下,安装的版本是7.1.2
2、报错结果
运行jupyternotebook后报错:404 GET /static/notebook/4131.bundle.js (3bea7012d1534d70a935c3c193d9308d@127.0.0.1) 5.70ms referer=http://localhost:8888/tree?token=[secret]
打开的链接就是空白的:
3、解决办法
卸载jupyternotebook
pip uninstall jupyter
重新安装特定版本的notebook
pip install notebook==6.1.5
安装代码补全插件
pip install jupyter-contrib-nbextensions==0.5.1
激活代码补全插件
jupyter contrib nbextension install --user
再次运行,问题解决
4、补充
如果6.1.5安装后还不行,可以试试更旧的版本
pip install notebook==5.7.10