欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jupyter notebook的插件安装及文本格式修改

程序员文章站 2022-03-20 20:29:45
jupyter notebook的插件安装及文本格式修改 1.jupyter notebook拓展插件安装 启动jupyter notebook : 打开控制台输入命令 jupyter notebook 安装Jupyter notebook extensions扩展插件: 1、pip install ......

jupyter notebook的插件安装及文本格式修改

1.jupyter notebook拓展插件安装

启动jupyter notebook : 打开控制台输入命令 jupyter notebook
安装jupyter notebook extensions扩展插件:
1、pip install jupyter_contrib_nbextensions
或者
1、pip install
2、jupyter contrib nbextension install --user
3、安装后重新启动控制台窗口: 再次执行命令jupyter notebook 便可以看到在web端看到如下窗口:

2.部分常用插件介绍:

vim binding:该插件使得jupyter notebook集成vim环境,可以使用vim所有快捷键进行撸代码;
codefolding :既可以对标题进行折叠,也可以对代码进行折叠,观看方便;
executetime : jupyter支持分步调试,所以该插件支持显示每步的执行时间;
notify:这是jupyter notebook中的通知机制,耗时任务当离开时完成时可自动提示。
jupyter notebook主题背景和字体更改

3.更改jupyter的样式

舒适的撸代码主题背景无论对于眼睛还是心情都有重要作用,接下来我们就安装选择适合自己的主题背景和字体

在控制台下用pip 安装jupyter-themes : pip install --upgrade jupyterthemes
使用如下命令查看所有可用的主题:

在cmd中输入jt -l
available themes:
   chesterish
   grade3
   monokai
   oceans16
   onedork
   solarizedd
   solarizedl

再可以使用如下命令选择适合自己的主题背景
username$ jt -t grade3(主题名称)
1
更改字体可以通过如下命令
username$ jt -f inconsolata(字体名称)

4.常用各种命令

options arg default
usagehelp -h
list themes -l
theme name to install -t
code font -f
code font-size -fs 11
notebook font -nf
notebook font size -nfs 13
text/md cell font -tf
text/md cell fontsize -tfs 13
pandas df fontsize -dfs 9
output area fontsize -ofs 8.5
mathjax fontsize (%) -mathfs 100
intro page margins -m auto
cell width -cellw 980
line height -lineh 170
cursor width -cursw 2
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

5.展示一种主题背景和格式:

1、 执行命令: jt -f inconsolata -t grade3

2、 执行命令:jt -t oceans16 -f inconsolata