Jupyter配置

anaconda的操作有缘再更吧

一、 Jupyter安装相关

1. Jupyter的安装命令

pip install juypter

2. Juypter默认文件配置

假如不对Jupyter的默认文件进行配置,每次从命令行中启动就总要手动cd到对应文件夹下,方法非常的笨逼

# 命令行输入以下命令,生成默认配置文件
jupyter notebook --generate-config

找到默认配置文件的目录,找到jupyter_notebook_config.py文件,第261行,修改到自己Jupyter的对应目录

## The directory to use for notebooks and kernels.
c.NotebookApp.notebook_dir = 'E:\Python\Jupyter'

3. Juypter启动

juypter notebook    # 默认端口启动,8888
jupyter notebook --port    # 指定端口启动
jupyter notebook --no-browser   # 启动服务器但不在浏览器中打开
Jupyter配置_第1张图片
jupyter界面

二、 虚拟环境相关包的安装

可以安装plotly、pyecharts等需要的包

python -m venv venv # 建立虚拟环境
venv\scripts\activate   # 激活虚拟环境
pip install plotly  # 安装plotly

三、 ipykernel的安装与配置

# 还在上一步中的虚拟环境中操作
pip install ipykernel   # 安装ipykernel
python -m ipykernel install --user --name=plotly    # 虚拟环境加入ipykernel中,name后接名称,最好和包中的内容相关,便于操作

四、Jupyter中Kernel相关

jupyter kernelspec list # 列出juypter中所关联的所有kernel
juypter kernelspec remove plotly    # 会卸载plotly的kernel

安装ipykernel并配置好之后,在jupyter中就可以看到


Jupyter配置_第2张图片
配置好plotly和pyecharts

五、 Juypter与Plotly的结合

Jupyter配置_第3张图片

六、 使用pyecharts时的注意事项

jupyter nbextension list  # 检查echarts是否配置成功
pip install jupyter-echarts-pypkg  # 如果没有成功,在相应环境中安装包

你可能感兴趣的:(Jupyter配置)