下载golang包

go语言中文文档:www.topgoer.com

golang1.14 https://studygolang.com/dl

cd /usr/local/src
wget https://studygolang.com/dl/golang/go1.14.1.linux-amd64.tar.gz
tar -zxvf go1.14.1.linux-amd64.tar.gz -C /usr/local/
设置环境变量
vim /etc/profile
# 设置golang的环境变量


# 设置GO安装目录 
export GOROOT=/usr/local/go
# 设置gopath
export GOPATH=/home/gopath
# 设置gobin
export GOBIN=/home/gopath/bin
# 设置代理,代理没有数据,则直接拉取
export GOPROXY=https://goproxy.io,direct
# 忽略公司git走代理
export GOPRIVATE=*.xx.com
# 加入PATH
export PATH=$PATH:$GOROOT/bin:$GOBIN
source /etc/profile
设置代理,加速go get

https://goproxy.io/zh/

go env -w GO111MODULE=on
go env -w GOPROXY=https://goproxy.io,direct