jupyter|jupyter notebook设置标题折叠

时间:2021/12/9
背景:jupyter notebook作为python数据开发者喜爱的一款交互式开发平台,有许多强大便捷的功能。一个文档在开发过程难免包含几个步骤,或长或短,由于日常需要,本次旨在实现对于标题块的折叠(效果如下图)。
jupyter|jupyter notebook设置标题折叠
文章图片

【jupyter|jupyter notebook设置标题折叠】jupyter|jupyter notebook设置标题折叠
文章图片

操作流程 1. 打开Anaconda的命令行工具——Anaconda Prompt。
2. 输入下列代码。

pip install jupyter_contrib_nbextensions# 安装 jupyter contrib nbextension install --user# 配置

然后重启jupyter notebook。
3. 在jupyter notebook主页,找到Nbextensions下的Collapsible Headings(代码块折叠),勾选上。
jupyter|jupyter notebook设置标题折叠
文章图片

4. 最后刷新一下页面。完成!!

参考资料 在 Jupyter Notebook 中更换主题与折叠代码_莉莉兹的摸鱼日记-CSDN博客_jupyter折叠代码
Jupyter notebook系列(2):插件的安装使用(代码折叠,添加目录,变量监控,代码格式化,运行时间统计,自动补全,自动保存,运行结束提醒) | 码农家园 (codenong.com)

    推荐阅读