jupyter 安装和使用
jupyter notebook 装在系统 python 环境里方便管理。
jupyter 安装
pip install jupyter notebook
jupyter 配置
重置配置文件,主要功能是获取配置文件路径,从而对其进行修改;
jupyter notebook --generate-config
配置文件路径:C:\Users\Administrator\.jupyter\jupyter_notebook_config.py
修改前: #c.NotebookApp.notebook_dir = ''
删除前面的 # 号,在后面的单引号里输入要设置的目录路径,保存关闭。
我的修改:c.NotebookApp.notebook_dir = 'D:\\storage'
jupyter notebook 运行
运行:python终端输入jupyter notebook
退出:Ctrl+C
jupyter notebook 插件
安装插件:pip install jupyter_contrib_nbextensions
配置nbextension:jupyter contrib nbextension install --user
启动jupyter notebook,选择 Nbextensions,先取消disable上的勾号,勾选上 Table of Contents(2),再勾选disable。
jupyter 添加虚拟环境 python 核心
在所需要的 python 的虚拟环境中运行:
- 安装包 ipykernel
pip install ipykernel
- 给 jupyter 添加这个虚拟环境的内核 kernel
前面的 z1 是当前环境名称,后面 z1 可以改变,是要显示的名字,其他部分固定不变
python -m ipykernel install --user --name z1 --display-name "z1"
- 查看安装的内核和位置
jupyter kernelspec list
- 移除内核
jupyter kernelspec remove z1