In this article, we will have explained the necessary steps to install and set up Atom Editor on Debian 10. Before continuing with this tutorial, make sure you are logged in as a user with sudo
privileges. All the commands in this tutorial should be run as a non-root user.
Atom is an open-source text and source code editor for Windows, Linux, and macOS, developed by GitHub. It is called “A text editor for the 21st century” due to being a highly customizable text editor.
Install Atom Editor on Debian 10
Step 1. The first command will update the package lists to ensure you get the latest version and dependencies.
sudo apt update sudo apt upgrade sudo apt install software-properties-common apt-transport-https wget
Step 2. Install Atom Text Editor on Debian system.
- Install Atom from the official website
Now download and install the Atom text editor Debian package file from its official website:
wget https://atom.io/download/deb -O atom.deb sudo dpkg -i atom.deb
Once Atom is installed, run the following command to check whether Atom is working correctly:
atom --version
- Install Atom via PPA repository:
Now import the GPG key of the repository using the following wget
command:
wget -q https://packagecloud.io/AtomEditor/atom/gpgkey -O- | sudo apt-key add -
Next, add the Atom apt repository to your system using the below command:
sudo add-apt-repository "deb [arch=amd64] https://packagecloud.io/AtomEditor/atom/any/ any main"
Once done, install it:
sudo apt update sudo apt install atom
Step 3. Accessing Atom Text Editor.
Now start Atom text editor using the following command or use system menu launcher:
atom
That’s all you need to do to install the Atom Text Editor on Debian 10 Buster. I hope you find this quick tip helpful. For further reading on Atom Editor, please refer to their official knowledge base. If you have questions or suggestions, feel free to leave a comment below.