yum安装go语言的方法:1、执行“yum -y install golang”命令安装go;2、编辑profile文件,配置环境变量;3、执行“source /etc/profile”命令即可。
本文操作环境:centos 7系统、GO 1.11.2、thinkpad t480电脑。
具体步骤:
1、安装golang
yum -y install golang
2、环境配置
1)打开profile文件
vi /etc/profile
2)添加环境变量 在文件后面追加如下文本:
# GOROOT export GOROOT=/usr/lib/golang # GOPATH export GOPATH=/root/go/ # GOPATH bin export PATH=$PATH:$GOROOT/bin:$GOPATH/bin
需要立即生效,在终端执行如下命令:
source /etc/profile
再次查看:
$ go env
GOARCH="amd64" GOBIN="" GOCACHE="/root/.cache/go-build" GOEXE="" GOFLAGS="" GOHOSTARCH="amd64" GOHOSTOS="linux" GOOS="linux" GOPATH="/root/go" GOPROXY="" GORACE="" GOROOT="/usr/lib/golang" GOTMPDIR="" GOTOOLDIR="/usr/lib/golang/pkg/tool/linux_amd64" GCCGO="gccgo" CC="gcc" CXX="g++" CGO_ENABLED="1" GOMOD="" CGO_CFLAGS="-g -O2" CGO_CPPFLAGS="" CGO_CXXFLAGS="-g -O2" CGO_FFLAGS="-g -O2" CGO_LDFLAGS="-g -O2" PKG_CONFIG="pkg-config" GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build417743789=/tmp/go-build -gno-record-gcc-switches"
至此,Go语言已经安装好了。
相关推荐:golang教程
以上是yum怎么安装go语言的详细内容。更多信息请关注PHP中文网其他相关文章!