根据操作系统下载对应的软件包
https://golang.google.cn/dl/
GOROOT就是go的安装路径
在~/.bash_profile中添加下面语句:
export GOROOT=/usr/local/go export GOPATH=/Users/workspaces export PATH=$PATH:$GOROOT/bin:$GOPATH/bin
如果要上述设置生效, 可以执行命令: source ~/.bash_profile
在hello.go中输入:
package main
import "fmt"
func main() {
fmt.Println("Hello, GO !")
}
原文:https://www.cnblogs.com/enumx/p/12297667.html