這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。
Linux(centos redhat ) 安裝
1.訪問官方地址:
https://golang.org/dl/ ##由於相關ZC你懂的,最好能翻牆下
2.下載64位綠色包:
https://storage.googleapis.com/golang/go1.8.3.linux-amd64.tar.gz
3.下載完畢後:
假定你想要安裝Go的目錄為 $GO_INSTALL_DIR,後面替換為相應的目錄路徑。
解壓縮tar.gz包到安裝目錄下:tar zxvf go1.8.3.linux-amd64.tar.gz -C $GO_INSTALL_DIR。
4.添加環境變數vim /etc/profile,加入如下幾行
export PATH=$PATH:$GO_INSTALL_DIR/go/bin
export GOROOT= $GO_INSTALL_DIR/go
export GOBIN=$GOROOT/bin
export GOPATH= $GO_INSTALL_DIR/go/data ##注意 $GO_INSTALL_DIR 為你的go的安裝或者解壓目錄
然後執行go
#go
Go is a tool for managing Go source code.
Usage:
go command [arguments]
The commands are:
build compile packages and dependencies
clean remove object files
doc show documentation for package or symbol
env print Go environment information
bug start a bug report
fix run go tool fix on packages
fmt run gofmt on package sources
generate generate Go files by processing source
get download and install packages and dependencies
install compile and install packages and dependencies
list list packages
run compile and run Go program
test test packages
tool run specified go tool
version print Go version
vet run go tool vet on packages
Use "go help [command]" for more information about a command.
Additional help topics:
c calling between Go and C
buildmode description of build modes
filetype file types
gopath GOPATH environment variable
environment environment variables
importpath import path syntax
packages description of package lists
testflag description of testing flags
testfunc description of testing functions
Use "go help [topic]" for more information about that topic.
看到以上資訊,說明go環境已經搭建起來
可是使用:go version 查看go的版本