描述:
进入jupyter-lab后提示kernel不存在,同时自己想要选择的kernel没有
原因:
"scenic protocol"这个环境已经被我删除了,重新创建了一个名为"scenic"的环境
scenic的内核未创建
解决:
# 查看目前可用内核
jupyter kernelspec list
# 进入scenic环境并创建新内核
conda activate scenic
python -m ipykernel install --name scenic --display-name "scenic (python3.6)"
# 删除旧的 scenic_protocol内核
jupyter kernelspec remove scenic_protocol
效果:
参考博客:https://blog.csdn.net/limanjihe/article/details/106322830