jupyter主题设置

作者: 生信编程日常 | 来源:发表于2020-10-23 20:09 被阅读0次

    设置Jupyter主题,可以让代码看起来更清晰,界面更舒服,方法如下:

    第一步,安装:
    这里我们使用pip进行安装

    pip3 install jupyterthemes
    

    第二步,加载可设置的主题列表:

    jt -l
    

    Available Themes:
    chesterish
    grade3
    gruvboxd
    gruvboxl
    monokai
    oceans16
    onedork
    solarizedd
    solarizedl

    第三步,选择你想要设置的主题,例如chesterish主题

    # selecting a particular theme
    #jt -t <name of the theme>
    jt -t chesterish
    

    恢复原主题

    # reverting to original Theme
    jt -r
    

    欢迎关注~

    参考:https://www.zhihu.com/question/59392251

    相关文章

      网友评论

        本文标题:jupyter主题设置

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