安装Mercurial
在进行后面的操作之前需要安装Mercurial版本管理系统(可以输出hg名词检测是否安装)。输入以下命令安装:
$ yum installmercurial
获取代码
以下命令会创建一个go目录。切换到相应目录,并且确保当前位置不存在go目录,运行命令:
$ hg clone -r release https://go.googlecode.com/hg/ go
安装Go
编译go环境:
$ cd go /src $ ./all.bash
*** 设置$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原文链接:https://www.f2er.com/go/191437.html