How to install go package

How to install go package

You can upgrade Beego through Go command or download and upgrade from source code.

  • Through Go command (Recommended):

go get -u github.com/astaxie/beego

  • Through source code: visit https://github.com/astaxie/beego and download the source code. Copy and overwrite to path $GOPATH/src/github.com/astaxie/beego. Then run go install to upgrade Beego:

go install github.com/astaxie/beego

Upgrading Prior to 1.0: The API of Beego is stable after 1.0 and compatible with every upgrade. If you are still using a version lower than 1.0 you may need to configure your parameters based on the latest API.

Notes

  1. Reference

猜你喜欢

转载自blog.csdn.net/hongshuteng/article/details/80206932