将conda环境添加到jupyter notebook中

在jupyter notebook中添加conda环境

source activate 虚拟环境名
conda install ipykernel
python -m ipykernel install --user --name 虚拟环境名 --display-name "自定义名字“
jupyter kernelspec list   #查看当前notebook中所具有的kernel

删除conda环境

jupyter kernelspec remove 'python myenv'   #删除配置

你可能感兴趣的:(Linux,linux)