欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

jupyter安装插件Nbextensions,实现代码提示功能(终极方法)

程序员文章站 2022-05-25 17:06:56
...

jupyter安装插件,实现代码提示功能

第一步

pip install jupyter_contrib_nbextensions -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/
jupyter contrib nbextension install  --user

第二步

pip install jupyter_nbextensions_configurator -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/
jupyter nbextensions_configurator enable --user

第三步

安装成功会在http://localhost:8888/tree中出现Nbextensions

第四步

重启notebook,勾选如下,成功配置

jupyter安装插件Nbextensions,实现代码提示功能(终极方法)


【注意】若jupyter nbextensions不显示拓展

jupyter安装插件Nbextensions,实现代码提示功能(终极方法)

解决方法

键入命令:

这个时间比较长,可能需要8分钟左右

conda remove jupyter_nbextensions_configurator
conda install -c conda-forge jupyter_nbextensions_configurator
conda install -c conda-forge jupyter_contrib_nbextensions
相关标签: python python