Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 612 Bytes

install.md

File metadata and controls

26 lines (20 loc) · 612 Bytes

Install From Linux

source : here

Download GO Binary

https://golang.org/dl/

create folder go on /usr/local/ and extract downloaded Go in /usr/local/

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

edit your .bashrc and add this

export GOROOT=/usr/local/go
export GOPATH=$HOME/go
export PATH="$PATH:$GOPATH/bin:$GOROOT/bin:$PATH"

check your go Installation

go version

and check your go env

go env

Install From Windows