描述:
進入jupyter-lab后提示kernel不存在,同時自己想要選擇的kernel沒有
原因:
"scenic protocol"這個環(huán)境已經(jīng)被我刪除了踊餐,重新創(chuàng)建了一個名為"scenic"的環(huán)境
scenic的內(nèi)核未創(chuàng)建
解決:
# 查看目前可用內(nèi)核
jupyter kernelspec list
# 進入scenic環(huán)境并創(chuàng)建新內(nèi)核
conda activate scenic
python -m ipykernel install --name scenic --display-name "scenic (python3.6)"
# 刪除舊的 scenic_protocol內(nèi)核
jupyter kernelspec remove scenic_protocol
效果:
參考博客:https://blog.csdn.net/limanjihe/article/details/106322830