解決了jupyter Kernel error問題
阿新 • • 發佈:2020-08-13
無法執行jupyter notebook困擾了我很久,一直嘗試各種辦法都無法解決kernel error問題,重灌了好幾次anaconda都是沒有用的,問題同樣存在。
今天終於看到個帖子解決了問題,唉,突然心累。。
記錄一下這幾個對我有幫助的帖子
https://blog.csdn.net/qq_16568981/article/details/71750789
https://www.cnblogs.com/qianyuesheng/p/8512096.html
另:
我是在anaconda powershell prompt下執行一下命令的。不知道powershell prompt和prompt有什麼區別,就隨便選了powershell。
解決辦法
- 首先使用
jupyter kernelspec list
檢視安裝的核心和位置 - 進入安裝核心目錄開啟kernel.jason檔案,檢視Python編譯器的路徑是否正確
- 如果不正確
python -m ipykernel install --user
重新安裝核心,如果有多個核心,如果你使用conda create -n python2 python=2
,為Python2.7設定conda變數,那麼在anacoda下使用activate pyhton2
切換python環境,重新使用python -m ipykernel install --user
安裝核心 - 重啟jupyter notebook即可