Run Python in Atom

Muhammad Maisam Abbas Aug 10, 2021 Jul 02, 2021
Run Python in Atom

This tutorial will discuss how you can run Python using the Atom Code Editor.

Run Python in Atom

To start, you have to install Python on your device. We can use the official link to download and install the latest version of Python. After the installation, we can verify whether Python has successfully installed on our device or not with the following command.

python --version

Output:

Python 3.8.1

The command above will give us the current version of Python installed on our device. Now, the next step will be to install the Atom Code Editor. You can download the Atom software for free from their official site.

In order to run Python in the Atom Code Editor, we have to install the corresponding script package. We can install the script package from this link. Alternatively, we can click on the Install a Package button and search for the script package.

After we have successfully completed the steps mentioned above, we can open and run Python files with the .py extension by clicking Ctrl + Shift + b buttons.

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

Related Article - Python Run