jupyter更改主题更新版

有时候,安装主题搞得jupyter notebook进不去了,下面是经验

安装jupyter notebook主题:

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple jupyterthemes == 0.18

指定版本好一点,我开始没指定版本,给我把tornado给卸了,然后得重新装tornada,而且不能版本有要求

最后装的是tornado 4.4.3

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple tornado==4.4.3

查看主题

jt -l

更改主题

按照这个格式,grade3是字体主题,roboto是字体,12号大小,cell宽度占屏幕90%,

-T -N表示工具栏菜单栏都打开

jt -t grade3 -f roboto -fs 12 -cellw 90% -T -N

 

你可能感兴趣的:(jupyter)