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

相关文章
|
4月前
|
机器学习/深度学习 数据挖掘 Shell
Jupyter notebook中5个有趣的魔法命令
Jupyter notebook中5个有趣的魔法命令
|
7月前
|
Python Windows
Jupyter Notebook的使用
Jupyter Notebook的使用
|
7月前
|
Windows
Anaconda 与 Jupyter notebook
Anaconda 与 Jupyter notebook
|
数据可视化 Python
【jupyter notebook】
【jupyter notebook】
106 0
|
机器学习/深度学习 JavaScript 前端开发
Jupyter Notebook好用在哪?
Jupyter Notebook好用在哪?
141 0
|
Shell Linux 文件存储
Jupyter notebook安装运行(详解)
Jupyter notebook安装运行(详解)
|
存储 Ubuntu 安全
搭建 Jupyter Notebook 服务
搭建 Jupyter Notebook 服务
986 0
|
Python
Jupyter-notebook 常用魔法命令
本文分享了一些常用到的 Jupyter-notebook 软件的快捷键以及 魔法命令,以供学习
219 0
|
搜索推荐 程序员 Shell
15个应该掌握的Jupyter Notebook 使用技巧
15个应该掌握的Jupyter Notebook 使用技巧
560 3
15个应该掌握的Jupyter Notebook 使用技巧
|
机器学习/深度学习 数据挖掘