How to Install Go on CentOS 7

Go, often referred to as golang is a modern open-source programming language created by Google. Many popular applications, including Kubernetes, Docker, Hugo, and Caddy are written in Go.

In this tutorial, we will show you how to download and install Go on a CentOS 7 system.

Prerequisites

Before continuing with this tutorial, make sure you are logged in as a user with sudo privileges .

How to Install Go

At the time of writing this article, the latest stable version of Go is version 1.13. Before downloading the tarball, visit the official Go downloads page and check if there is a new version available.

Follow the steps below to install Go on CentOS 7:

 

  1. Download the tarball.

    To download the Go binary use either wget or curl :

    wget https://dl.google.com/go/go1.13.linux-amd64.tar.gz

Verify the tarball.

Once the download is completed verify the tarball checksum with the sha256sum command:

sha256sum go1.13.linux-amd64.tar.gz
68a2297eb099d1a76097905a2ce334e3155004ec08cdea85f24527be3c48e856  go1.13.linux-amd64.tar.gz
  • Make sure the hash printed from the command above matches the one from the downloads page.

  • Extract the tarball.

    Use the tar command to extract the tarball to the /usr/local directory:

    sudo tar -C /usr/local -xzf go1.13.linux-amd64.tar.gz

Adjust the Path Variable.

Now we need to tell our system where to find the Go executable binaries by adjusting the $PATH environment variable.

We can do this by appending the following line to the /etc/profile file (for a system-wide installation) or to the $HOME/.bash_profile file (for a current user installation):

~/.bash_profile
export PATH=$PATH:/usr/local/go/bin
export GO111MODULE=on

Save the file, and load the new PATH environment variable into the current shell session with the following command:

source ~/.bash_profile

Verify that you've installed Go by opening a command prompt and typing the following command:

# go version

Test the Installation

To test whether Go is installed correctly, we will set up a workspace and build a simple “Hello world” program.

  1. Create the workspace directory

    By default the workspace directory is set to $HOME/go, to create it type:

    mkdir ~/go

Create a simple “Hello World” Go file.

Inside the workspace create a new directory src/hello

mkdir -p ~/go/src/hello

and in that directory create a file named hello.go

~/go/src/hello/hello.go
package main

import "fmt"

func main() {
    fmt.Printf("Hello, World\n")
}
  • Build the hello.go file:

    To build the file, switch to the ~/go/src/hello directory and run go build:

    cd ~/go/src/hellogo build
  • The command above will build an executable named hello.

  • Run the executable:

    Run the executable by typing:

    ./hello
Hello, World
  1. If you see the output above, then you have successfully installed Go.

Conclusion

Now that you have downloaded and installed Go on your CentOS system, you can start developing your Go projects.

  • install go, go on centos 7
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

How to upgrade PHP to 7.4 in centos 7?

Enter the following commands on the terminal to upgrade PHP:      1 . To install the latest...

Protocol Buffer Compiler Installation

How to install the protocol buffer compiler. While not mandatory, gRPC applications often...

Configure gRPC for go and protoc

Quick start This guide gets you started with gRPC in Go with a simple working example....

Installing Bazel on CentOS 7

Download the corresponding .repo file from Fedora COPR and copy it to /etc/yum.repos.d/....