一. 首先创建虚拟环境&&进入到你已经搭建好的虚拟环境中
bash
# 创建一个名为jupyter_test的conda虚拟环境
conda create -n jupyter_test python=3.7.5
# 进入/激活虚拟环境
conda activate jupyter_test
二. 安装jupyter(conda自带)和内核, 将环境添加进内核
bash
pip install jupyter
pip install ipykernel # 安装jupyter内核
# 添加虚拟环境到jupyter中
python -m ipykernel install --user --name 虚拟环境名 --display-name 在jupyter中显示的环境名称
三. 移除内核环境
bash
jupyter kernelspec remove 环境名
四. 如果conda虚拟环境中第三方包发生了变化,需要将jupyter中的内核环境移除重新进行添加
1. 移除
bash
jupyter kernelspec remove 环境名
2. 重新添加
bash
# 添加虚拟环境到jupyter中
python -m ipykernel install --user --name 虚拟环境名 --display-name 在jupyter中显示的环境名称