These instructions are written for installing the Atom editor on Ubuntu or another Debian derived Linux Distribution. If you are using a different Linux distribution then you will need to adapt these instructions.

Atom is a text editor for programmers. It is an alternative to gedit. It also has very good integration with Go.

Installing Atom has two steps.

  • Downloading and installing Atom
  • Configuring Atom to work with Go.

Downloading and Installing Go

Atom can be downloaded from the project home page. You just need to click the green “Download .deb” button.

Once Atom has downloaded you need to install it. To do this you need to open a new terminal window. Then execute the following command.

sudo dpkg --install atom-amd64.deb

And Atom will install.

Once atom is installed you can start it with by typing

atom

in a terminal.

Notes

Unlike the Windows or MacOS X version of atom the Linux version does not update itself. If you want to keep up with latest changes to Atom you need to check the website regularly. New releases are made once a week.

Configuring Atom to Work with Go

Once Atom is is installed you need to configure it to use Go. To do that you need to read our Guide to Configuring Atom.

Search

Featured Lesson

Numbers

What You are Going to Learn?

Computers are used to process data. All data is made up of numbers. Yes, really! Everything is just a bunch of numbers to a computer. These are the only things they understand.

We are going to explain how numbers are used in Go programs. Then we are going to show you how to do type sums in Go.