安装 GO + Goland + helloworld

2019-06-21  本文已影响0人  咩咩的毛球

macOS

安装 GO
  1. 安装包:https://golang.org/dl/,下载解压

  2. 编辑~/.bash_profile
    $ vi ~/.bash_profile
    添加两条环境变量
    $ export GOROOT=/usr/local/go
    $ export PATH=$PATH:$GOROOT/bin
    source 使之生效
    $ source ~/.bash_profile

    说明:

    • GOROOT 是 GO 的安装路径
    • go version 检测是否安装成功
安装开发工具 Goland
  1. 安装包:https://www.jetbrains.com/go/download/#section=mac
  2. 学生信息验证,获得注册码
  3. 使用 添加 gopath 和项目 path
  4. Helloworld
    package main
    import "fmt"
    func main(){
            fmt.Println("hello world")
    }
    

点击run

Go / Golang 适合做什么:

类 C 语言

上一篇下一篇

猜你喜欢

热点阅读