Jupyter Notebook win 安装记录
1. 创建虚拟环境
(1)打开cmd 安装虚拟环境
conda create -n xxxx python==3.xx
(2)安装依赖包
conda install xxx
2. 安装 Jupyter Notebook
(1)安装jupyter
conda install jupyter
3. 配置 Jupyter Notebook
从浏览器打开 Jupyter Notebook 的路径选择有两种办法
(1)使用cmd进入对应目录下打开,如上
(2)配置默认路径,配置方法如下:
命令行窗口输入jupyter notebook --generate-config
,会发现C:\Users\用户名\ .jupyter下多出了一个配置文件jupyter_notebook_config.py
;
(2)打开这个配置文件,配置默认路径#c.NotebookApp.notebook_dir = ''
。
配置文件修改完成后,在jupyter notebook中写的代码都会保存在该目录下。现在重新启动在CMD启动jupyter notebook,就进入了新的工作目录(这个我不能成功),如果想要修改默认路径,参考这个博客
4. 添加代码自动补全功能(可选)
(1) 打开anaconda prompt,依次输入:
pip install jupyter_contrib_nbextensions
jupyter contrib nbextension install --user
然后安装nbextensions_configurator,依次执行如下命令
pip install jupyter_nbextensions_configurator
jupyter nbextensions_configurator enable --user
完成后可以关闭上使用的窗口
在命令行打开 jupyter notebook
有如下截图:
(2)在成功的情况下,启动jupyter notebook,会发现在选项栏中多出了Nbextension的选项,点开该选项,并勾选Hinterland,即可添加代码自动补全功能参考这里。