美文网首页
jupyter自定义主题和背景

jupyter自定义主题和背景

作者: longgb246 | 来源:发表于2018-10-30 22:58 被阅读0次

一、jupyter的主题

https://github.com/dunovank/jupyter-themes

安装


pip install --upgrade jupyterthemes

主题切换


jt -t chesterish -T -N

主题换回来


jt -r

安装了主题之后,jupyter的显示自动变成中文的。

二、jupyter切换背景

jupyter的风格预设路径在 ~/.jupyter 下。

~/.jupyter/custom下有custom.css custom.js fonts,修改custom.css custom.js即可。

如:


body {    
    background: url('images/blurry_03.jpeg') no-repeat left top !important;
    background-size: 100% !important;
}

添加图片背景:


image.png image.png

相关文章

网友评论

      本文标题:jupyter自定义主题和背景

      本文链接:https://www.haomeiwen.com/subject/cqantqtx.html