将conda的虚拟环境添加到jupyter notebook的kernel中

最终效果是这样子的
将conda的虚拟环境添加到jupyter notebook的kernel中_第1张图片
打开Anaconda Prompt

# 1 创建新的环境
conda create --name your_env
# # 安装你的package(这一步可省略)
# conda install -c conda-forge tensorflow
# 2 为了将conda环境放入Jupyter,需要安装ipykernel
conda install -c anaconda ipykernel
# 3 将我们刚刚创建的环境放入jupyter中
python -m ipykernel install --user --name=your_env

重启jupyter notebook,就会发现kernel来了一位新成员。

reference:
1、How to add your Conda environment to your jupyter notebook in just 4 steps

你可能感兴趣的:(conda,jupyter,python)