Centos 7 安装 Go1.8.1
Go最新版为Go1.8.1,下面是Centos 7的安装过程。
1、获得Go1.8.1
wget https://storage.googleapis.com/golang/go1.8.1.linux-amd64.tar.gz
tar zxvf go1.8.1.linux-amd64.tar.gz
mv go /usr/local/
2、安装Go1.8.1
vi /etc/profile
在最后加入
export GOROOT=/usr/local/go
export GOBIN=$GOROOT/bin
export GOPKG=$GOROOT/pkg/tool/linux_amd64
export GOARCH=amd64
export GOOS=linux
export GOPATH=/home/pan/gopath #我的文件目录
export PATH=.:$PATH:$GOBIN:$GOPKG
保存。
刷新,使其生效。
source /etc/profile
测试:
go version
版权声明:
作者:lichengxin
链接:https://www.techfm.club/p/1974.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。
THE END
二维码
共有 0 条评论