1、首先,确保已经安装了 Jupyter notebook ,并在conda中创建好了虚拟环境。
这里以我的pytorch1
为例:
2、在命令行中,激活你想要使用的虚拟环境。
conda env list
conda activate pytorch1
3、在激活的虚拟环境中,安装 ipykernel 包
pip install ipykernel
4、在激活的虚拟环境中,将该虚拟环境添加到 Jupyter notebook 的内核列表中:
python -m ipykernel install --user --name=pytorch1
这里的 “pytorch1” 是你的虚拟环境的名称,你可以根据实际情况进行替换。