安装Mercurial
在进行后面的操作之前需要安装Mercurial版本管理系统(可以输出hg名词检测是否安装)。输入以下命令安装:
$ yum install mercurial
获取代码
以下命令会创建一个go目录。切换到相应目录,并且确保当前位置不存在go目录,运行命令:
$ hg clone -r release https://go.googlecode.com/hg/ go
安装Go
编译go环境:
$ cd go /src
$ ./all.bash
编译完成后,结尾会打印以下信息。 Installed Go for linux/amd64 in /home/you/go. Installed commands in /home/you/go/bin. *** You need to add /home/you/go/bin to your $PATH. *** 设置$PATH $ cd /etc/profile.d/ $ vi go.sh export GOROOT=/home/you/go export GOBIN=$GOROOT/bin
export GOARCH=amd64
export GOOS=linux
export PATH=.:$PATH:$GOBIN
$ . ./go.sh
编写程序以hello.go代码为例,用以下命令编译:
package main import "fmt" func main(){ fmt.Printf("hello world\n") }
$ go build hello.go
运行程序: $ ./hello
关于 如何管理编译go项目需参阅
https://golang.org/doc/code.html
有疑问加站长微信联系(非本文作者)