jupyter notebook的插件安装及文本格式修改
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
下一篇: 前端实现连连看小游戏实例代码
推荐阅读
-
如何修改通过Anaconda安装的jupyter notebook的工作目录
-
Jupyter Notebook的安装及问题解决方案
-
jupyter notebook的插件安装及文本格式修改
-
如何修改通过Anaconda安装的jupyter notebook的工作目录
-
Anaconda安装及修改Jupyter Notebook默认文件路径
-
Jupyter notebook 的各种配置 nbextensions 插件,中文转英文,安装nb_conda插件,添加kernel等等
-
四条安装命令启用jupyter notebook的插件nbextension,解决nbextension窗口空白的问题。
-
anaconda在虚拟环境中安装jupyter notebook|解决jupyter notebook中不存在虚拟环境的问题|修改jupyter notebook的启动路径
-
jupyter notebook的插件安装及文本格式修改