1. 程式人生 > 實用技巧 >解決了jupyter Kernel error問題

解決了jupyter Kernel error問題

無法執行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。

解決辦法

  1. 首先使用jupyter kernelspec list檢視安裝的核心和位置
  2. 進入安裝核心目錄開啟kernel.jason檔案,檢視Python編譯器的路徑是否正確
  3. 如果不正確python -m ipykernel install --user重新安裝核心,如果有多個核心,如果你使用conda create -n python2 python=2,為Python2.7設定conda變數,那麼在anacoda下使用activate pyhton2切換python環境,重新使用python -m ipykernel install --user安裝核心
  4. 重啟jupyter notebook即可