Jupyter Notebook添加目录
【摘要】
问题描述
如果用jupyter notebook跑代码时,当分了很多点,想看到对应的目录,对总体有个概览时,会发现notebook木有自动生成目录的栏目。
解决方法
(1)下载插件:
pip in...
问题描述
如果用jupyter notebook跑代码时,当分了很多点,想看到对应的目录,对总体有个概览时,会发现notebook木有自动生成目录的栏目。
解决方法
(1)下载插件:
pip install jupyter_contrib_nbextensions
- 1
(2)重启打开jupyter,可以发现多了一栏Nbextensions
。
(3)如果发现栏Nbextensions
的插件很少,那可能要重新下载再启动:
# 1、先卸载扩展包
pip uninstall jupyter_contrib_nbextensions
pip uninstall jupyter_nbextensions_configurator
# 2、再安装Nbextensions
pip install jupyter_contrib_nbextensions
# 3、安装 javascript and css files
jupyter contrib nbextension install --user
# 4、安装configurator
pip install jupyter_nbextensions_configurator
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
(4)勾选Table of Contents (有的版本是toc2)。jupyter notebook就有目录啦。
Reference
(1)https://jupyter-contrib-nbextensions.readthedocs.io/en/latest/install.html
(2)https://blog.csdn.net/bubblesumm/article/details/103114359
文章来源: andyguo.blog.csdn.net,作者:山顶夕景,版权归原作者所有,如需转载,请联系作者。
原文链接:andyguo.blog.csdn.net/article/details/122159787
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)