Installing Atom Editor on Linux (original) (raw)

Last Updated : 8 May, 2026

Atom is a free, open-source, cross-platform text editor developed by GitHub. It features a clean and modern interface that enhances productivity while coding. With strong community support and extensive customization options, Atom allows developers to tailor their workspace according to their preferences. Its flexibility and rich ecosystem make it suitable for both beginners and experienced programmers.

**Note: Atom has been officially discontinued and archived by GitHub as of December 15, 2022. It no longer receives updates, security patches or official support. Users are encouraged to consider modern alternatives such as Visual Studio Code, Sublime Text or Zed.

Methods to Install Atom on Linux

1. Install Using Snap (Easy Method)

Snap packages bundle the application along with all required dependencies. This makes installation simple but can increase package size and startup time. Snap packages work on most major Linux distributions, including Ubuntu, Linux Mint, Debian, Fedora and Kali Linux.

**Install Command:

sudo snap install atom --classic

**Output:

Installing Atom Text Editor using snap

**Note: Snap is easy to use and manage, but it may not offer the best performance compared to native packages.

Atom can be installed using .deb or .rpm packages depending on the Linux distribution. This method provides better system integration and performance.

**Steps:

atom_Edtitor

Installing Atom Text-Editor using .deb/.rpm files

**Note: These packages are available only for 64-bit systems. Make sure your OS is 64-bit before downloading.

3. Install Using PPA (For 32-bit Debian-Based Systems)

For 32-bit Debian Linux users, they can install atom via PPA. PPA is Personal Package Archive which allows developers to create the repository and distribute the software.

**Installation Commands:

sudo add-apt-repository ppa:webupd8team/atom
sudo apt-get update
sudo apt-get install atom

**Output:

Installing Atom Text-Editor using PPA : For 32-bit Systems

4. Install Using Ubuntu Software Center

Atom can be installed using Ubuntu's Software Center also. This is just the snap-version of Atom which is mentioned above, hence it is not recommended.

atom_Edtitor

Launching Atom Text-Editor

1. From Terminal

**Command:

atom

**Output:

Launching Atom from Terminal

Launching Atom from Applications Menu