1、安装
sudo apt-get install golang
2、查看go的安装路径
go env
查看 GOROOT="/usr/lib/go-1.6"
3、修改环境变量
export GOROOT=/usr/lib/go-1.6
export PATH=$PATH:$GOROOT/bin
4、测试
$ go
5、创建hello.go
package main
import "fmt"
func main(){
fmt.Print("hello,world\n")
}
6、运行
#go run hello.go
hello,world