使用python的人不可能不会接触jupyter notebook,因为它太实用了,尤其是边写代码边调试的时候。
1. 安装以及打开
pip install jupyter
安装完成后,在命令行下运行:
jupyter notebook
便会自动从浏览器打开。
2. 设置
2.1 设置主目录
在命令行输入以下命令生成配置文件:
jupyter notebook --generate-config
打开配置文件,找到c.NotebookApp.notebook_dir
,去掉注释,并添加自己的启动目录
2.2 修改主题
主题安装命令:
pip install jupterthemes
使用 jt -l
可列出可用的主题名:
命令行参数:
我的主题配置:
jt -t monokai -f fira -fs 13 -cellw 90% -ofs 11 -dfs 11 -T -N
调试似乎会有些问题,修改C:\Users\XXX\.jupyter\custom\custom.css
文件,找到div.output_area语句块,修改为:
div.output_area {
display: -webkit-box;
padding: 13px;
}
2.3 安装扩展
扩展安装命令:
pip install jupyter_nbextensions_configurator jupyter_contrib_nbextensions
jupyter contrib nbextension install --user
jupyter nbextensions_configurator enable --user
重新启动jupyter notebook便可以使用,该扩展是一个集合,推荐使用一下扩展:
- Table of Contents, 产生目录
- Snippets Menu,定制菜单选项,以插入代码片段、样板文件和示例。
- Codefolding,代码折叠
- Scratchpad, 草稿cell
- Collapsible Headings,折叠内容,与代码折叠不同
- Hinterland, 代码自动提示