Ubuntu – Unable to get Atom text editor from the Software Center

16.04atomsoftware installation

I'm unable to get Atom text editor from the Software Center. When I try I get this error:

Package does not exist.
Check the spelling of the package name, and that the appropriate repository is enabled.

Best Answer

Run these commands to quickly and easily install and upgrade the Atom text editor snap package from the terminal in all currently supported versions of Ubuntu (64-bit only).

  • Install Atom text editor:

    sudo apt install snapd  
    sudo snap install --classic atom  
    

    Note that a snap in classic confinement behaves as a traditionally packaged application with full access to the system, and Atom extension packages are installed into the user's home directory.

  • Upgrade Atom text editor:

    sudo snap refresh --classic atom  
    

Atom text editor can also be installed from the Ubuntu Software application in Ubuntu 16.04 as shown in the below screenshot. Either way there is no need to add a PPA to your software sources.

enter image description here

Atom is more than just another text editor. Atom is extensible through the installation of Atom packages that can give Atom the capabilities of running code, showing inline graphical output and more.

enter image description here Inline plot in Atom

Related Question