欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

jupyter notebook

程序员文章站 2022-05-25 19:51:03
...

安装及配置

  1. 安装

    pip install jupyter notebook
    
  2. 更改默认路径

    生成配置表文件,控制台输入: jupyter notebook --generate-config
    打开配置文件,修改: c.NotebookApp.notebook_dir = "新路径"
    
  3. 自定义主题

    • 使用第三方模块 jupyterthemes

      pip install jupyterthemes
      pip install --upgrade jupyterthemes
      
    • 修改css文件,个性化定制

      路径:.jupyter/custom/custom.css
      

IPython语法

IPython Documentation
Code of the IPython Cookbook, Second Edition (2018)
jupyter