【发布时间】:2018-03-21 03:06:55
【问题描述】:
我在 atom 上收到一个错误,它要求使用 pip 安装 ipkernal。
不知道该怎么办。我的系统上有 Anaconda 而不是 pip。有人可以解释一下错误是什么以及如何在使用 anaconda 时解决它。
我正在运行python代码并将文件保存为.py。
import pandas as pd
wd = pd.read_csv("winequality-red", sep = ";")
five = wd.head()
print ("five")
错误信息:
No kernel for grammar Python found <br>
Check that the language for this file is set in Atom and that you have a Jupyter kernel installed for it.<br>
To detect your current Python install you will need to run:<br>
python -m pip install ipykernel<br>
python -m ipykernel install --user
【问题讨论】:
标签: python anaconda atom-editor