安裝環境:CentOS7.4 64位,安裝Golang
安裝Golang
檢視是否安裝了golang:
$ yum info golang
Loading mirror speeds from cached hostfile
Installed Packages
Name : golang
Arch : x86_64
Version : 1.8.3
Release : 1.el7
Size : 11 M
Repo : installed
From repo : os
Summary : The Go Programming Language
URL : http://golang.org/
License : BSD and Public Domain
Description : The Go Programming Language.
如果沒有安裝,執行安裝命令:
yum install golang
這樣安裝之後透過命令列輸入go就可以看到相關的資訊。輸入go env
檢視環境資訊:
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOOS="linux"
GOPATH="/root/go"
GORACE=""
GOROOT="/usr/lib/golang"
GOTOOLDIR="/usr/lib/golang/pkg/tool/linux_amd64"
GCCGO="gccgo"
CC="gcc"
GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build681960794=/tmp/go-build -gno-record-gcc-switches"
CXX="g++"
CGO_ENABLED="1"
PKG_CONFIG="pkg-config"
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
環境配置
1)檢視是否存在.bash_profile, 如果不存在則新建.bash_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語言已經安裝好了。