我是靠谱客的博主 优雅毛巾,最近开发中收集的这篇文章主要介绍JupyterNotebook插件管理与安装JupyterNotebook插件管理与安装,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

JupyterNotebook插件管理与安装

JupyterNotebook有很多额外的插件可以选择性的安装。

本文将会详细介绍如何管理和安装JupyterNotebook插件。

同时,也会对一些推荐的插件的用法进行剖析和说明。

依赖安装

JupyterNotebook本身有推荐的插件管理包。
我们首先需要安装如下第三方库用于管理JupyterNotebook插件。

pip install jupyter_nbextensions_configurator
pip install jupyter_contrib_nbextensions

安装完成后,我们还需要执行如下命令来完成插件管理启用:

jupyter nbextensions_configurator enable --user
jupyter contrib nbextension install --user

启用插件

d3dcab32ad2ff10f8e5ac33b5277b801

tqdm_notebook

tqdm_notebook可以在运行页面中显示进度条。
首先,我们需要安装tqdm

pip install tqdm

接下来,使用方式如下:
eb757720294dc841bfb25a3c792dc218
在迭代对象外侧,用tqdm_notebook函数包围即可。

修改主题

有没有觉得JupyterNotebook的主题非常单调?
接下来,我们讲解一下如何修改JupyterNotebook的主题。
首先,需要安装相关的第三方库:

pip install --upgrade jupyterthemes

安装完成后,我们将会有一个jt的命令。
其使用的基本方法如下:

jt
[-h] [-l] [-t THEME] [-f MONOFONT] [-fs MONOSIZE] [-nf NBFONT]
[-nfs NBFONTSIZE] [-tf TCFONT] [-tfs TCFONTSIZE] [-dfs DFFONTSIZE]
[-m MARGINS] [-cursw CURSORWIDTH] [-cursc CURSORCOLOR] [-vim]
[-cellw CELLWIDTH] [-lineh LINEHEIGHT] [-altp] [-altmd] [-altout]
[-P] [-T] [-N] [-r] [-dfonts]

参数含义如下:

功能说明参数默认值
Usage help-h
List Themes-l
Theme Name to Install-t
Code Font-f
Code Font-Size-fs11
Notebook Font-nf
Notebook Font Size-nfs13
Text/MD Cell Font-tf
Text/MD Cell Fontsize-tfs13
Pandas DF Fontsize-dfs9
Output Area Fontsize-ofs8.5
Mathjax Fontsize (%)-mathfs100
Intro Page Margins-mauto
Cell Width-cellw980
Line Height-lineh170
Cursor Width-cursw2
Cursor Color-cursc
Alt Prompt Layout-altp
Alt Markdown BG Color-altmd
Alt Output BG Color-altout
Style Vim NBExt*-vim
Toolbar Visible-T
Name & Logo Visible-N
Reset Default Theme-r
Force Default Fonts-dfonts

使用示例:

jt -t chesterish -T -N

命令执行完成后,重启Jupter-Notebook。

最后

以上就是优雅毛巾为你收集整理的JupyterNotebook插件管理与安装JupyterNotebook插件管理与安装的全部内容,希望文章能够帮你解决JupyterNotebook插件管理与安装JupyterNotebook插件管理与安装所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(72)

评论列表共有 0 条评论

立即
投稿
返回
顶部