前提・実現したいこと
AtomのパッケージHydrogenを使って、pythonの環境構築を行いたいです。Hydrogenそのものはインストールできたのですが、コードを実行しようとすると下記のエラーメッセージが表示されてしまいます。
発生している問題・エラーメッセージ
No kernel for grammar Python found
Check that the language for this file is set in Atom, that you have a Jupyter kernel installed for it, and that you have configured the language mapping in Hydrogen preferences.
To detect your current Python install you will need to run:
python -m pip install ipykernel
python -m ipykernel install --user
試したこと
1.(カーネルの?)PATHを取得するためにjupyter kernelspec list --json を端末(anaconda prompt)で実行し、以下の結果を得る
{
"kernelspecs": {
"python3": {
"resource_dir": "C:\Users\frusc\anaconda3\share\jupyter\kernels\python3",
"spec": {
"argv": [
"C:/Users/frusc/anaconda3\python.exe",
"-m",
"ipykernel_launcher",
"-f",
"{connection_file}"
],
"env": {},
"display_name": "Python 3",
"language": "python",
"interrupt_mode": "signal",
"metadata": {}
}
}
}
}
2.この内容をHydrogenのsettingにある kernel space や startup code 等の欄にコピペして、コードを再実行(同じエラーメッセージが表示される)
補足情報
Jupyter Notebook は既にインストールされています。カーネルを起動して普通に使えていました。
あなたの回答
tips
プレビュー