Linux CentOS下搭建golang 1.17 开发环境
1. 下载软件包并安装
cd ~
wget https://storage.googleapis.com/golang/go1.17.2.linux-amd64.tar.gz
tar zxvf go1.17.2.linux-amd64.tar.gz
mv go /usr/local/
2. 配置环境变量
vim /etc/profile
2.1 添加如下信息
export GO111MODULE=on
export GOPROXY=https://goproxy.io
export GOROOT=/usr/local/go
export GOBIN=$GOPATH/bin
export PATH=$PATH:$GOROOT/bin:$GOBIN
2.2 使环境变量生效
source /etc/profile
go version
2.3 输出如下信息证明已经安装好环境: