Jupyter Notebook在清华镜像下安装Nbextensions 插件

清华镜像下安装Nbextensions

Nbextensions 有很多好用的扩展功能,比如显示目录,显示程序执行时间(Execute Time),美化格式(Code prettify),代码折叠(Codefolding)等。

但是直接安装比较慢,我们利用镜像安装。

在终端执行:

pip install jupyter_contrib_nbextensions -i https://pypi.tuna.tsinghua.edu.cn/simple/

关闭 jupyter notebook,在终端运行

jupyter contrib nbextension install --user --skip-running-check

执行以上两个步骤无误后,启动 Jupyter Notebook,上面选项栏会出现 Nbextensions 的选项
Jupyter Notebook在清华镜像下安装Nbextensions 插件_第1张图片
点开上面的√,就可以对下面的内容进行操作。
Jupyter Notebook在清华镜像下安装Nbextensions 插件_第2张图片

勾选其中的 Table of Contents(2)选项;
Jupyter Notebook在清华镜像下安装Nbextensions 插件_第3张图片

Nbextensions的使用

可以看这篇文章
《jupyter扩展插件Nbextensions使用》

你可能感兴趣的:(python,python)