freeCodeCamp/guide/english/go/installing-go/arch-linux/index.md

701 B

title
Installing Go in Arch Linux using pacman

Installing Go in Arch Linux using pacman

Using Arch Linux Package Manager (pacman) is the easiest way to install Go. Based on the Arch Linux philosophy of providing new software versions very fast, you will get a very current version of go. Before you can install the go package, you have to bring the system up to date.

$ sudo pacman -Syu
$ sudo pacman -S go

Check installation and version of go

To check if go was successfully installed, use:

$ go version
> go version go2.11.1 linux/amd64

This will print to the console the version of go, while at the same time making sure the installation went smoothly.