设置GOPATH
export GOPATH=/Users/sunnysmilez/Desktop/code/go_study
获取govendor
cd /Users/sunnysmilez/Desktop/code/go_study
go get -u github.com/kardianos/govendor
初始化
cd /Users/sunnysmilez/Desktop/code/go_study/src
mkdir web
govendor init
拉取远程资源
govendor fetch github.com/go-xorm/xorm
govendor fetch github.com/astaxie/beego
govendor fetch github.com/beego/bee
查看本地的包
govendor list