Centos7 安装golang

Centos7的go语言安装

使用二进制文件安装

1、下载二进制文件:

1
$ wget http://www.golangtc.com/static/go/1.6.2/go1.6.2.linux-amd64.tar.gz

2、解压并创建工作目录:

1
2
3
$ tar -zxf go1.6.2.linux-amd64.tar.gz -C /usr/local/
$ mkdir /Golang

3、设置环境变量:

在 /etc/profile 添加:

1
2
3
4
5
6
7
export GOROOT=/usr/local/go
export GOBIN=$GOROOT/bin
export GOPKG=$GOROOT/pkg/tool/linux_amd64
export GOARCH=amd64
export GOOS=linux
export GOPATH=/Golang
export PATH=$PATH:$GOBIN:$GOPKG:$GOPATH/bin

然后执行

1
source /etc/profile

使之生效。

4.编写demo程序验证下:

4.1> 编写demo程序:

vi demo.go
1
2
3
4
5
6
package main
import "fmt"
func main() {
fmt.Printf("Let's go\n")
}
4.2> 编译运行:
1
$ go run demo.go

运行:

1
$ ./demo