jupyter notebook是什么?
Jupyter Notebook(此前被称为 IPython notebook)是一个交互式笔记本,支持运行 40 多种编程语言。
Jupyter Notebook 的本质是一个 Web 应用程序,便于创建和共享文学化程序文档,支持实时代码,数学方程,可视化和 markdown。 用途包括:数据清理和转换,数值模拟,统计建模,机器学习等等。 (from 百度百科)
设置默认目录
- 启动cmd,输入命令
jupyter notebook --generate-config
, 输出生成的配置文件jupyter_notebook_config.py
- 打开该配置文件,搜索 "notebook_dir" 找到所在行,修改为新的路径,移除注释,保存
- 启动
jupyter notebook
常用插件
- TOC(Table of Contents2)导航插件
# Windows 服务器,安装ipython-contrib/jupyter_contrib_nbextensions的库。
# 以管理员权限运行 cmd , 依次执行以下命令
pip install jupyter_contrib_nbextensions #python3
#安装toc2的js和css文件
jupyter contrib nbextension install
#开启toc2功能。要想使用jupyter_contrib_nbextensions的扩展功能,必须显示开启
jupyter nbextension enable toc2/main
#打开jupyter notebook ,可以看到工具栏右边多了一个列表选项,点击它就能显示导航窗格
- ...