mirror of
https://github.com/labstack/echo.git
synced 2024-12-10 10:10:02 +02:00
8ab362f61d
Signed-off-by: Vishal Rana <vr@labstack.com>
973 B
973 B
+++ title = "Installation" description = "Installing Echo" [menu.main] name = "Installation" parent = "guide" weight = 1 +++
Prerequisites
Using go get
$ cd <project in $GOPATH>
$ go get -u github.com/labstack/echo
Using glide
$ cd <project in $GOPATH>
$ glide get github.com/labstack/echo#~3.0
Using govendor
$ cd <project in $GOPATH>
$ govendor fetch github.com/labstack/echo@v3.0
Echo is developed using Go 1.7.x
and tested with Go 1.6.x
and 1.7.x
.
Echo follows semantic versioning managed through GitHub
releases, specific version of Echo can be installed using a package manager.