Jupyter Notebook-Configuration

配置文件

文件地址查找

1
jupyter notebook --generate-config

默认工作目录修改

1
c.NotebookApp.notebook_dir = ''

Conda 环境关联

nb_conda 安装

1
conda install nb_conda

使用

  • 重启后可在主页找到 Conda 标签
  • 可在每一个 Notebook 中通过 Kernel 条目下的 Change kernel 切换运行环境

Nbextensions 插件配置

Nbextensions 安装

1
2
pip install jupyter_contrib_nbextensions
jupyter contrib nbextension install --user # Install javascript and css files

使用

  • 重启后可在主页找到 Nbextensions 标签

插件推荐

  • Code prettify
  • Collapsible Headings
  • highlighter
  • Hinterland
  • Scratchpad
  • Table of Contents (2)

主题配置

jupyterthemes 安装

1
pip install jupyterthemes

主题列表查看

1
jt -l

主题切换

1
jt -t <theme_name>

默认主题恢复

1
jt -r

注意事项

  • 可自定义字体、样式、宽度、占屏比等
  • 或与 Nbextensions 插件不兼容

参考资料