Jupyter Notebook添加目录

简介: 如果用jupyter notebook跑代码时,当分了很多点,想看到对应的目录,对总体有个概览时,会发现notebook木有自动生成目录的栏目。

问题描述

如果用jupyter notebook跑代码时,当分了很多点,想看到对应的目录,对总体有个概览时,会发现notebook木有自动生成目录的栏目。

解决方法

(1)下载插件:

pip install jupyter_contrib_nbextensions

2)重启打开jupyter,可以发现多了一栏Nbextensions

image.png

(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

(4)勾选Table of Contents (有的版本是toc2)。jupyter notebook就有目录啦。image.png

相关文章
|
3月前
|
机器学习/深度学习 数据挖掘 Shell
Jupyter notebook中5个有趣的魔法命令
Jupyter notebook中5个有趣的魔法命令
|
6月前
|
Python Windows
Jupyter Notebook的使用
Jupyter Notebook的使用
|
6月前
|
Windows
Anaconda 与 Jupyter notebook
Anaconda 与 Jupyter notebook
|
数据可视化 Python
【jupyter notebook】
【jupyter notebook】
95 0
|
机器学习/深度学习 JavaScript 前端开发
Jupyter Notebook好用在哪?
Jupyter Notebook好用在哪?
125 0
|
Shell Linux 文件存储
Jupyter notebook安装运行(详解)
Jupyter notebook安装运行(详解)
|
存储 Ubuntu 安全
搭建 Jupyter Notebook 服务
搭建 Jupyter Notebook 服务
849 0
|
编译器 Python
Jupyter notebook安装教程
Jupyter Notebook 是以网页的形式打开,可以在网页页面中直接编写代码和运行代码,代码的运行结果也会直接在代码块下显示的程序。如在编程过程中需要编写说明文档,可在同一个页面中直接编写,便于作及时的说明和解释。
404 0
|
Python
Jupyter-notebook 常用魔法命令
本文分享了一些常用到的 Jupyter-notebook 软件的快捷键以及 魔法命令,以供学习
195 0
|
搜索推荐 程序员 Shell
15个应该掌握的Jupyter Notebook 使用技巧
15个应该掌握的Jupyter Notebook 使用技巧
540 3
15个应该掌握的Jupyter Notebook 使用技巧