Mac 安装beego

终端命令:
go get -u github.com/astaxie/beego
go get -u github.com/beego/bee

添加环境变量:
open ~/.bash_profile
粘贴:
export GOPATH={PATH}:${GOPATH}/bin
生效:
source ~/.bash_profile

输入go
输入bee
验证是否成功。

创建项目:
bee new demo
bee api demo

你可能感兴趣的:(Mac 安装beego)