Jupyter 美化

jupyter notebook美化

  1. 安装

    pip install jupyter
    
  2. 修改配置文件

   jupyter notebook --generate-config 
   
   
   修改jupyter_notebook_config.py配置文件
  打开这个配置文件,找到“c.NotebookApp.notebook_dir=……”,把路径改成自己的工作目录。
  c.NotebookApp.notebook_dir = 'D:Codejupyter-notebook'
  1. 安装 themes

  2.  pip install jupyterthemes
     jt-l
     jt -t oceans16 -T -N -fs 12   -tfs 12
     jt -t onedork -f hack -fs 12 -nfs 12 -tfs 12 -ofs 11 -T -N
     jt-r
    
  3. 安装插件

  4.  pip install jupyter_contrib_nbextensions && jupyter contrib nbextension install
     
     勾选 插件
      jupyter contrib nbextension install --user --skip-running-check
      
      # 插件不显示
     
    

https://www.zhihu.com/search?type=content&q=jupyter

https://blog.csdn.net/u013555719/article/details/77446545

https://zhuanlan.zhihu.com/p/46242116

http://www.elecfans.com/d/650252.html

https://jupyter-contrib-nbextensions.readthedocs.io/en/latest/install.html

http://resuly.me/2017/11/03/jupyter-config-for-windows/

自定义背景

https://www.cmwonderland.com/2018/05/04/jupyter/

原文地址:https://www.cnblogs.com/ruhai/p/10857288.html