jupyter安装jupyter_contrib_nbextension扩展功能

如果安装了先卸载

pip uninstall jupyter_contrib_nbextensions
pip uninstall jupyter_nbextensions_configurator

执行安装指令

##安装nbextensions
pip install jupyter_contrib_nbextensions

##安装 javascript and css files
jupyter contrib nbextension install --user

##最后执行,用于安装configurator
pip install jupyter_nbextensions_configurator

##重启jupyter

常用扩展功能

常用扩展功能,勾选上即可:
最常用功能说明,建议勾选上:
Collapsible headings 折叠标题
Notify 通知机制,跑一些耗时较久的任务,完成后通知
Codefolding 折叠代码
Zen mode extension 隐藏活动状态栏,方便注意代码
Execute time extension 显示运行的时间

你可能感兴趣的:(jupyter安装jupyter_contrib_nbextension扩展功能)