macOS
安装 GO
安装包:https://golang.org/dl/,下载解压
-
编辑~/.bash_profile
$ vi ~/.bash_profile
添加两条环境变量
$ export GOROOT=/usr/local/go
$ export PATH=$PATH:$GOROOT/bin
source 使之生效
$ source ~/.bash_profile
说明:
- GOROOT 是 GO 的安装路径
-
go version
检测是否安装成功
安装 Goland
- 安装包:https://www.jetbrains.com/go/download/#section=mac
- 学生信息验证,获得注册码
-
使用
- Helloworld
package main import "fmt" func main(){ fmt.Println("hello world") }
点击run
有疑问加站长微信联系(非本文作者)