配置:
1. 命令行启动
jupyter notebook
2. 也可以Anaconda直接启动
3. 设置token,如下图所示,命令行中输入
jupyter notebook list
C:Usershostname>jupyter notebook list
Currently running servers:
http://localhost:8888/?token=cb2dcc41ac7a3185e6109759dca0ebf0c9309914c0eecc76 :: C:Usershostname
注意:
访问地址:http://localhost:8888/
token:cb2dcc41ac7a3185e6109759dca0ebf0c9309914c0eecc76
将token=后面的字符串输入到下面的文本框中
配置虚拟环境
1. 安装anaconda后可以在Anaconda Navigator安装
2. 修改 jupyter notebook 默认工作目录:
(1)(win+r)打开 cmd 输入命令:jupyter notebook --generate-config
(2)找到文件 jupyter_notebook_config.py (C:UsersAdministrator.jupyter 中)
(3)打开该文件 找到 #c.NotebookApp.notebook_dir = '' 并添加(将其修改为):c.NotebookApp.notebook_dir = u'D:\python' (注意将#号删除,注意是\双斜线,注意事项,不支持中文,可以有空格)
3. 设置虚拟环境
首先安装ipykernel:
python conda install ipykernel
在虚拟环境下创建kernel文件:conda install -n 环境名称 ipykernel
激活conda环境: source activate 环境名称
将环境写入notebook的kernel中
python -m ipykernel install --user --name 环境名称 --display-name “Python (环境名称)”