Jupyter创建kernel
1.创建kernel步骤
# step 1 进入需要创建kernel的conda环境。
# activate pytorch_gpu(创建的环境名称)
activate pytorch_gpu
# step 2 环境下安装ipykernel。
pip install ipykernel
# step 3 创建kernel链接。
# python -m ipykernel install --user --name pytorch_gpu(环境名称) --display-name torch_gpu(kernel名称)
python -m ipykernel install --user --name pytorch_gpu --display-name torch_gpu
2.常用的命令
# 查看kernel链接列表
jupyter kernelspec list
# 删除kernel链接
# jupyter kernelspec remove pytorch_gpu (kernel所在的环境名称)
jupyter kernelspec remove pytorch_gpu
# 创建虚拟环境
# conda create -n pytorch_gpu(环境名称) python=3.7(python版本号)
conda create -n pytorch_gpu python=3.7
# 删除虚拟环境
# conda remove -n pytorch_gpu(环境名称) --all
conda remove -n pytorch_gpu --all