{"id":4351,"date":"2021-02-12T15:40:29","date_gmt":"2021-02-12T15:40:29","guid":{"rendered":"https:\/\/linuxways.net\/?p=4351"},"modified":"2021-03-05T05:13:47","modified_gmt":"2021-03-05T05:13:47","slug":"how-to-install-atom-text-editor-on-debian-10","status":"publish","type":"post","link":"https:\/\/linuxways.net\/de\/debian\/how-to-install-atom-text-editor-on-debian-10\/","title":{"rendered":"How to Install Atom Text Editor on Debian 10"},"content":{"rendered":"<p>Atom is a powerful, open-source, and highly configurable text editor developed by GitHub. It can be installed in Linux, MacOS, and Windows OS. With its higher extensibility and flexibility, you can handle any development and coding related tasks. This feature-rich text editor has a built-in package manager from where you can choose from thousands of packages to add new functionalities to your text editor. Some other features of Atom include smart auto-completion, find and replace, syntax highlighting, a lot of keyboard shortcuts and multiple panes, etc.<\/p>\n<p>This article will explain how to install Atom text editor on Debian 10 system. There are following two ways to install Atom text editor on the Debian system:<\/p>\n<ul>\n<li>Installing Atom via apt<\/li>\n<li>Installing Atom via .deb package<\/li>\n<\/ul>\n<p><strong>Note<\/strong>: The commands and procedure discussed here has been tested on <strong>Debian 10 OS<\/strong>. You must have sudo access to install\/remove the Atom text editor on your system.<\/p>\n<h2>Installing Atom via apt<\/h2>\n<p>Atom is not available in the default repositories of the Debian system. To install Atom, we will configure the Debian package manager apt to use the Atom package repositories. This will also let you update Atom once it releases a new version.<\/p>\n<h3>Step 1: Add the repository key<\/h3>\n<p>Before adding the Atom repository to your system apt sources, you will first need to add its key to apt. By doing so, your system will trust this repository.<\/p>\n<p>To add the Atom repository\u2019s key to apt\u2019s keyring, issue the below command in Terminal:<\/p>\n<pre>$ wget -qO - https:\/\/packagecloud.io\/AtomEditor\/atom\/gpgkey | sudo apt-key add -<\/pre>\n<p>You can see <strong>OK<\/strong> in the below output, which confirms the key has been added successfully.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"900\" height=\"85\" class=\"wp-image-4352\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/02\/downloading-atoms-repositroy-key.png\" alt=\"downloading atom's repositroy key\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/02\/downloading-atoms-repositroy-key.png 900w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/02\/downloading-atoms-repositroy-key-300x28.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/02\/downloading-atoms-repositroy-key-768x73.png 768w\" sizes=\"auto, (max-width: 900px) 100vw, 900px\" \/><\/p>\n<h3>Step 2: Add Atom\u2019s repository to apt sources<\/h3>\n<p>Now you will need to add the Atom\u2019s repository to apt sources. Execute the below command in Terminal to do so:<\/p>\n<pre>$ sudo sh -c 'echo \"deb [arch=amd64] https:\/\/packagecloud.io\/AtomEditor\/atom\/any\/ any main\" &gt; \/etc\/apt\/sources.list.d\/atom.list'<\/pre>\n<h3>Step 3: Update apt<\/h3>\n<p>After adding the Atom\u2019s repository, you will need to update apt. Issue the below command in Terminal to do so:<\/p>\n<pre>$ sudo apt-get update<\/pre>\n<h3>Step 4: Install Atom Text editor<\/h3>\n<p>Now you can install Atom text editor using the apt package manager. Here is the command to do so:<\/p>\n<pre>$ sudo apt-get install atom<\/pre>\n<p>When the Terminal prompts you with <strong>Y\/n<\/strong> option, press <strong>Y<\/strong> to carry on the installation of Atom.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"728\" height=\"277\" class=\"wp-image-4353\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/02\/installing-atom-via-apt.png\" alt=\"installing Atom via apt\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/02\/installing-atom-via-apt.png 728w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/02\/installing-atom-via-apt-300x114.png 300w\" sizes=\"auto, (max-width: 728px) 100vw, 728px\" \/><\/p>\n<p>It will take a while after which Atom will be installed on the system.<\/p>\n<h2>Installing Atom via dpkg package<\/h2>\n<p>Atom text editor can also be installed via its .deb package. In this procedure, we will first download Atom .deb package and then install it via dpkg.<\/p>\n<h3>Step 1: Download Atom .deb package<\/h3>\n<p>To download the Atom .deb package, go to the GitHub website and download <a href=\"https:\/\/github.com\/atom\/atom\/releases\/download\/v1.54.0\/atom-amd64.deb\">atom-amd64.deb<\/a>. Alternatively, you can also use the below command to download the Atom .deb package.<\/p>\n<pre>$ wget <a href=\"https:\/\/github.com\/atom\/atom\/releases\/download\/v1.54.0\/atom-amd64.deb\">https:\/\/github.com\/atom\/atom\/releases\/download\/v1.54.0\/atom-amd64.deb<\/a><\/pre>\n<h3>Step 2: Install Atom<\/h3>\n<p>Once the .deb package is downloaded, move to the directory where the downloaded package has been saved. Then in order to install the .deb package, issue the below command in Terminal:<\/p>\n<pre>$ sudo dpkg -i atom-amd64.deb<\/pre>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"791\" height=\"233\" class=\"wp-image-4354\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/02\/installing-atom-via-dpkg.png\" alt=\"installing atom via dpkg\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/02\/installing-atom-via-dpkg.png 791w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/02\/installing-atom-via-dpkg-300x88.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/02\/installing-atom-via-dpkg-768x226.png 768w\" sizes=\"auto, (max-width: 791px) 100vw, 791px\" \/><\/p>\n<p>After running the above, you might receive an error about missing dependencies. If this is the case, you can install those dependencies using the below command:<\/p>\n<pre>$ sudo apt-get -f install<\/pre>\n<h2>Verifying installation of Atom<\/h2>\n<p>To verify the installation and to view the version of Atom installed, issue the below command in Terminal:<\/p>\n<pre>$ atom --version<\/pre>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"364\" height=\"114\" class=\"wp-image-4355\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/02\/atom-version.png\" alt=\"atom version\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/02\/atom-version.png 364w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/02\/atom-version-300x94.png 300w\" sizes=\"auto, (max-width: 364px) 100vw, 364px\" \/><\/p>\n<h2>Launching Atom<\/h2>\n<p>In order to launch Atom text editor, hit the super key and type <em>atom<\/em> in the search bar. Then click the Atom icon from the search results in order to launch it.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"435\" height=\"256\" class=\"wp-image-4356\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/02\/launch-atom.png\" alt=\"launch Atom\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/02\/launch-atom.png 435w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/02\/launch-atom-300x177.png 300w\" sizes=\"auto, (max-width: 435px) 100vw, 435px\" \/><\/p>\n<p>This is the default view you will see after launching Atom for the first time.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"931\" height=\"565\" class=\"wp-image-4357\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/02\/word-image-170.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/02\/word-image-170.png 931w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/02\/word-image-170-300x182.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/02\/word-image-170-768x466.png 768w\" sizes=\"auto, (max-width: 931px) 100vw, 931px\" \/><\/p>\n<h2>Uninstalling Atom<\/h2>\n<p>If you need to uninstall Atom from your system, you can do so using the below command in Terminal:<\/p>\n<pre>$ sudo apt-get remove atom<\/pre>\n<p>It will prompt you with <strong>Y\/n<\/strong> choice. Press <strong>Y<\/strong> if you really want to uninstall Atom. Now Atom will be removed from your system. To uninstall the dependencies too, use the below command:<\/p>\n<pre>$ sudo apt-get autoremove<\/pre>\n<p>In this article, you have learned the installation of Atom text editor on the Debian system. We have explained two different methods using which you can install Atom on your system. Based on your preferences, you can choose any method for installation. In the end, we have also shared the method for the uninstallation of Atom, if you ever need to do so. For more information about Atom, visit the official <a href=\"https:\/\/flight-manual.atom.io\/\">documentation<\/a>.<\/p>\n<p>If you are working on other Linux distributions, visit how to install Atom in <a href=\"https:\/\/linuxways.net\/de\/ubuntu\/install-atom-editor-on-ubuntu-20-04\/\">Ubuntu<\/a>.<\/p>","protected":false},"excerpt":{"rendered":"<p>Atom is a powerful, open-source, and highly configurable text editor developed by GitHub. It can be installed in Linux, MacOS, and Windows OS. With its higher extensibility and&hellip;<\/p>","protected":false},"author":4,"featured_media":4358,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[192],"class_list":["post-4351","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-debian","tag-atom-text-editor"],"_links":{"self":[{"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/posts\/4351","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/comments?post=4351"}],"version-history":[{"count":0,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/posts\/4351\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/media\/4358"}],"wp:attachment":[{"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/media?parent=4351"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/categories?post=4351"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/tags?post=4351"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}