jupyter的相关配置
程序员文章站
2022-05-29 07:55:52
...
一.更换主题
# 安装主题
pip install jupyterthemes
# 更新主题
pip install --gurade jupyterthemes
# 查看可用主题列表
jt -l
# 更换主题(-t 主题名称, -f 字体大小, -cellw 占屏比或宽度, -ofs 输出段的字号, -T显示工具栏, -T显示自己主机名)
jt -t onedork -f fira -fs 13 -cellw 90% -ofs 11 -T -T
# 恢复初始化风格
jt -r
二.Nbextensions插件
# 安装(安装后重启)
pip install jupyter_contrib_nbextension
# 插件介绍
1. Hinterland(自动补全代码)
2. table of Contents(将markdown转为目录)
3. ExecuteTime(自动计算单元格运行时间)
4. Variable Inspector(代码中的变量显示)
5. Highlight selected word(选中高亮)