-
Linux(centos redhat ) 安裝
1.訪問官方地址:
https://golang.org/dl/
由于相關(guān)ZC你懂的,最好能翻墻下
2.下載64位綠色包:
https://storage.googleapis.com/golang/go1.8.3.linux-amd64.tar.gz
3.下載完畢后:
假定你想要安裝Go的目錄為$GO_INSTALL_DIR
墓陈,后面替換為相應(yīng)的目錄路徑黎比。
解壓縮tar.gz包到安裝目錄下:
tar -xvf go1.8.3.linux-amd64.tar.gz -C $GO_INSTALL_DIR
4.添加環(huán)境變量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的安裝或者解壓目錄
5.生效環(huán)境變量
source /etc/profile
- 然后執(zhí)行g(shù)o
[root@centos ~] 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環(huán)境已經(jīng)搭建起來
- 查看go的版本
[root@centos ~] go version
go version go1.8 linux/amd64