Golang Mac环境配置

一、下载安装

  • 官网下载
  • 默认安装即可

二、配置

$ cd ~
$ vim .bash_profile
点击i进入编辑模式,最后添加一下配置,esc退出编辑模式,shift+:输入wq保存退出

##Golang
export GOPATH=/Users/jony/go
export PATH=$GOPATH/bin:$PATH

使配置生效
$ source .bash_profile
检查
go env

三、下载包工具

$ go get github.com/astaxie/beego
$ go get github.com/beego/bee

  • 创建应用
    $ cd $GOPATH/src
    $ bee new hello
    $ cd hello
    $ bee run

你可能感兴趣的:(Golang Mac环境配置)