jupyter notebook 中,没有conda环境
1、首先,在 anaconda prompt 中,查看你已经创建过的 conda 环境:
conda info -e
2、进入想要在 jupyter notebook 中新建的环境:
conda activate pytorch02
3、在改环境下,安装 ipykernel
conda install notebook ipykernel
输入 y ,按 enter 安装
4、设置 jupyter notebook
python -m ipykernel install --name pytorch02
注:这里面的 pytorch02,换成你自己上面已经进入的环境名称,即可。
5、测试:
终端中输入:
jupyter notebook
自动在网页中弹出:
图中的 pytorch02 出现了,测试成功!