配置 Atom 以运行 Python

配置 Atom 以运行 Python

我一直在尝试设置 Atom 编辑器以在 Ubuntu 18 上运行 Python 程序。我安装的软件包是:脚本 atom-runner autocomplete-python python-tools

我甚至根据 atom-runner 配置配置了 config.cson 文件。

我收到以下错误:

Atom 运行器: testing.py Atom 运行器: testing.py

无法找到命令:python 您确定 PATH 配置正确吗?

我还需要做其他事情吗?

答案1

atom-runner 包的常见问题解答中有一节关于此错误的内容这里这可能会对你有帮助。

似乎 python 命令不在你的路径中。使用以下命令检查 python 在系统中的位置:

which python

并检查该路径(或至少其中的一部分)是否在你的 PATH 中:

echo $PATH

如果没有,将 python 路径添加到 PATH 中应该可以解决问题。为此,请将以下行添加到文件.bashrc

export PATH=$PATH:[your path to python here]

将方括号替换为which python

答案2

只需要在系统上安装 Python。请确保你之前已经安装好了它。

安装方法:

http://ubuntuhandbook.org/index.php/2017/07/install-python-3-6-1-in-ubuntu-16-04-lts/

相关内容