Installation
Getting Super Powers
Installing Go is easy, one can visit their download page and download the latest version build for there respective Operating System.
Here are some popular one
Mac OSX
One could use homebrew distribution by running following command in terminal
This would automatically take care of all the things needed for installation. Alternatively, here is a direct link for download for OSX
Note: Direct link points to Go v1.14.2 at the time of writing this book. This may be periodically updated, but one is requested not to depend on it for the latest version
Ubuntu 18.04 or higher
Again it is highly recommended that one should install the Golang directly from download page, or by a direct link here
Note: Direct link points to Go v1.14.2 at the time of writing this book. This may be periodically updated, but one is requested not to depend on it for the latest version
Once you have downloaded the gzip
file, extract it someplace in your home directory and then add following lines to you $HOME/.bashrc
or $HOME/.bash_profile
file
Please replace path with the path you have extracted the zip file into
Here GOROOT
points to the parent directory of bin in go folder, then the bin path is extended to PATH
variable. GOPATH
is where you go get or personal code lives, GOBIN
points to go package or local code binary that gets generated when go code is compiled. We will discuss these at length, later
Or alternatively, If you're using Ubuntu 18.04 LTS or 19.10 on amd64, arm64, armhf or i386, then you can use the longsleep/golang-backports
PPA and install Go 1.14.
Note **that golang-go
installs the latest Go as default Go. If you do not want that, install golang-1.14
instead and use the binaries from /usr/lib/go-1.14/bin
These packages were not created by the Go project, and we don't support them, but they may be useful for you.
Windows
For Microsoft Windows, it is highly recommended that one should install from Golang download page
Instructions
Official binary distributions are available for the FreeBSD (release 10-STABLE and above), Linux, macOS (10.11 and above), and Windows operating systems and the 32-bit (386
) and 64-bit (amd64
) x86 processor architectures.
If a binary distribution is not available for your combination of operating system and architecture, try installing from source or installing gccgo instead of gc.
System Requirements
Testing the installation
Now since we are done with installation. Let's test if everything is fine before moving forward. Fire up a terminal on your system and run following command
If everything is fine one should see version output correctly. To test tooling run following command in terminal
If you get something similar without any error. We are good to Go
Last updated