1. 安装GO
sudo apt-get install golang-go
2. 设置Go环境变量
环境配置:
vi /etc/profile
末尾加入
export GOROOT=$HOME/go
export GOBIN=$GOROOT/binexport GOARCH=386export GOOS=linuxexport GOPATH=$HOME/workspacegoexport PATH=$PATH:$GOBINGOROOT 是安装路径
GOPATH 是工程路径 3. 设置go代码目录
sudo mkdir Applications/go
4. 测试安装
完成安装后,新建一个文档来测试环境是否搭建成功:
Example helloWorld.go
优美的go代码:
package main
import (
"fmt"
"runtime"
)
func main() {
fmt.Println("Hellow World!", runtime.Version())
}
执行go run helloWorld.go, 应该会打印出:
或者go build helloWorld.go,将生成helloWorld.sh,./helloWorld也可以运行。
Hellow World! %!(EXTRA string=go1.6.2)
ok!安装挺简单的,接下来是选用IDE