Skip to content

Instantly share code, notes, and snippets.

@dasgoll
Forked from diegopacheco/go-install.md
Created January 20, 2018 03:27
Show Gist options
  • Save dasgoll/5e1a46cb3e7a35746bb88f386fcf78fa to your computer and use it in GitHub Desktop.
Save dasgoll/5e1a46cb3e7a35746bb88f386fcf78fa to your computer and use it in GitHub Desktop.
How to Install GO Lang on CentOS / Amazon Linux?

How to Install GO Lang on CentOS / Amazon Linux?

sudo wget https://storage.googleapis.com/golang/go1.4.2.linux-amd64.tar.gz
tar -xzf go1.4.2.linux-amd64.tar.gz 
export GOROOT=PATH_WHERE_YOU_EXTRACT_GO
export PATH=$PATH:$GOROOT/bin 
export GOBIN=$GOROOT/bin 
mkdir ~/golang/ 
export GOPATH=~/golang/ 
export PATH=$GOPATH/bin:$PATH 
go get code.google.com/p/go-tour/gotour
gotour 

Add system vars on ~/.bashrc

export GOROOT=/home/ec2-user/go-14
export PATH=$PATH:$GOROOT/bin
export GOPATH=/home/ec2-user/
export PATH=$GOPATH/bin:$PATH
export GOBIN=/home/ec2-user/go-14/bin/

Eclipse Plugin?

https://github.com/GoClipse/goclipse

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment