jupyter之安装、主题、扩展

anonymous_vhacker
anonymous_vhacker
发布于 2022-12-01 / 9 阅读
0
0

jupyter之安装、主题、扩展

Jupyter

升级Jupyter

pip install -U jupyter

开启notebook

jupyter notebook

Jupyter主题

安装主题

pip install jupyterthemes

查看可用的主题

jt -l

更换主题

jt -t onedork -f fira -fs 13 -cellw 90% -ofs 11 -dfs 11 -T -T

-t 主题
-f(字体)
-fs(字体大小)
-cellw(占屏比或宽度)
-ofs(输出段的字号)
-N(显示工具栏)
-T(显示自己主机名)

恢复默认

jt -r

我常用的主题

jt -t onedork -f fira -fs 10 -cellw 85% -ofs 10 -dfs 10 -N -T -kl

Jupyter扩展

扩展安装

pip install jupyter_contrib_nbextensions
jupyter contrib nbextension install

我常用的扩展

  • Collapsible Headings

  • Snippets

  • ExecuteTime

  • jupyter-js-widgets/extension

  • Nbextensions dashboard tab

  • Snippets Menu

  • contrib_nbextensions_help_item

  • Nbextensions edit menu item

  • Autopep8

  • Split Cells Notebook


评论