三步教你更换jupyter主题和页面宽度,让你的jupyter赏心悦目!
程序员文章站
2022-06-05 19:29:23
...
先上效果
最近每天都对着jupyter notebook的默认主题,感觉实在是单调了点。而且jupyter notebook的宽度,实在是让人难受…
今天碰巧发现jupyter原来可以换主题。不仅可以换,还特别快!
下面教你三步更换jupyter notebook主题!
- cmd输入下面的命令下载
jupyterthemes
模块。
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple jupyterthemes
-
bash环境输入
jt -l
查看所有主题名称。 -
bash环境输入
jt -t 主题名称
设置主题。
切记每一次更换主题设置,要ctrl+c关闭jupyter才能设置成功。
但是仅仅换个主题,jupyter notebook奇怪的宽度仍然让人感觉不爽!幸运的是,jupyterthemes
还包括了更改jupyter notebook宽度的功能,分分钟让你的jupyter notebook更舒服!依然,一行命令搞定。bash
环境输入下面这行命令。
jt -t oceans16 -cellw 90%
然后重启jupyter notebook,就能看到jupyter舒服的界面了~