top of page
Writer's pictureThe Tech Platform

How to Install Golang in Linux

Go is a statically typed, compiled programming language designed at Google by Robert Griesemer, Rob Pike, and Ken Thompson. Go is syntactically similar to C, but with memory safety, garbage collection, structural typing, and CSP-style concurrency.


Download:

Click the button below to download the Go installer.

go1.17.linux-amd64.tar.gz (129 MB)


Install

Follow the installation instructions:

  • Extract the archive you downloaded into /usr/local, creating a Go tree in /usr/local/go. Important: This step will remove a previous installation at /usr/local/go, if any, prior to extracting. Please back up any data before proceeding. For example, run the following as root or through sudo:

rm -rf /usr/local/go && tar -C /usr/local -xzf go1.17.linux-amd64.tar.gz
  • Add /usr/local/go/bin to the PATH environment variable. You can do this by adding the following line to your $HOME/.profile or /etc/profile (for a system-wide installation):

export PATH=$PATH:/usr/local/go/bin 
  • Note: Changes made to a profile file may not apply until the next time you log into your computer. To apply the changes immediately, just run the shell commands directly or execute them from the profile using a command such as source $HOME/.profile.

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

$ go version 
  • Confirm that the command prints the installed version of Go.



The Tech Platform

1 comment

1 Comment


mr thuru
mr thuru
Aug 01, 2023

Cybersecurity has become a crucial aspect of online platforms, considering the rising threats posed by hackers and malicious actors. Irctc new registration has implemented robust security measures to safeguard user information and transactions. The new registration process includes account verification through email or phone, adding an extra layer of protection against unauthorized access. This has not only inspired confidence among users but has also helped to establish IRCTC as a trustworthy and reliable platform for booking train tickets.

Like
bottom of page