#実行したいこと・起こったこと
VScodeで.ipynbファイルを実行したい。
Shift + Enterで以下を実行するとエラーメッセージを吐かれた。
execute
1import numpy as np
error
1Error: Jupyter cannot be started. Error attempting to locate jupyter: 'Kernelspec' module not installed in the selected interpreter ({0}). 2Please re-install or update 'jupyter'. 3at A.startServer (/Users/home/.vscode/extensions/ms-python.python-2020.2.63072/out/client/extension.js:1:781100) 4at async A.ensureServerAndNotebookImpl (/Users/home/.vscode/extensions/ms-python.python-2020.2.63072/out/client/extension.js:1:780555) 5at async A.ensureServerAndNotebook (/Users/home/.vscode/extensions/ms-python.python-2020.2.63072/out/client/extension.js:1:780356) 6at async A.submitCode (/Users/home/.vscode/extensions/ms-python.python-2020.2.63072/out/client/extension.js:1:777738) 7at async A.reexecuteCell (/Users/home/.vscode/extensions/ms-python.python-2020.2.63072/out/client/extension.js:75:879007)
#対処としてやったこと
- まず上記のウィンドウに表示されているinstallを実行。インストールで表示される全てのパッケージがRequirement already satisfiedであった。
- 次にjupyterのアップグレードを行った。 pip install --upgrade jupyter
- なんの改善もなかったため、再度jupyter入れ直し。pip uninstall jupyter からpip install jupyter
- 改善がなかったためデスクトップ上の.jupyterと.ipythonの隠しファイルを削除、kernelに関する変化なし
- .vscode内にあるjupyterに関するエクステンションを削除,kernelに関する変化なし
#個人的に原因と考えられること
このエラーが発生している間、左上のカーネルを示す部分には以下のように表示されていた。
よってjupyterではなくpythonのkernelに関するエラーだと考えている。このエラーが吐かれるようになった前後の操作として、.DS_storeファイルを削除しており、これが一因になったのではと考えているが、対処の仕方がわからない。
どうかご教示ください。よろしくお願い申し上げます。
回答1件
あなたの回答
tips
プレビュー