在 Atom 中运行 Python

Muhammad Maisam Abbas 2021年10月2日
在 Atom 中运行 Python

本教程将讨论如何使用 Atom 代码编辑器运行 Python。

在 Atom 中运行 Python

首先,你必须在你的设备上安装 Python。我们可以通过官方链接下载安装最新版本的 Python。安装完成后,我们可以使用以下命令验证 Python 是否已成功安装到我们的设备上。

python --version

输出:

Python 3.8.1

上面的命令将为我们提供设备上安装的 Python 的当前版本。现在,下一步将是安装 Atom 代码编辑器。你可以从他们的官方网站免费下载 Atom 软件。

为了在 Atom 代码编辑器中运行 Python,我们必须安装相应的脚本包。我们可以从此链接安装脚本包。或者,我们可以单击安装包按钮并搜索脚本包。

成功完成上述步骤后,我们可以通过点击Ctrl + Shift + b 按钮来打开并运行带有 .py 扩展名的 Python 文件。

Muhammad Maisam Abbas avatar Muhammad Maisam Abbas avatar

Maisam is a highly skilled and motivated Data Scientist. He has over 4 years of experience with Python programming language. He loves solving complex problems and sharing his results on the internet.

LinkedIn

相关文章 - Python Run