(cmd)在虚拟环境中安装jupyter、添加虚拟环境到kernel、查看kernel列表、从kernel中删除指定虚拟环境

添加国内源

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
conda config --set show_channel_urls yes

在虚拟环境中安装jupyter

pip install ipykernel -i https://pypi.douban.com/simple/

将虚拟环境添加到jupyter kernel中

python -m ipykernel install --user --name=虚拟环境名

查看kernel列表

jupyter kernelspec list

从kernel列表中删除指定虚拟环境

jupyter kernelspec remove 虚拟环境名

你可能感兴趣的:(深度学习)