mirror of
https://github.com/labstack/echo.git
synced 2025-01-10 00:28:23 +02:00
a9c88cad63
Signed-off-by: Vishal Rana <vr@labstack.com>
27 lines
559 B
Markdown
27 lines
559 B
Markdown
---
|
|
title: Installation
|
|
menu:
|
|
side:
|
|
parent: guide
|
|
weight: 1
|
|
---
|
|
|
|
Echo is developed and tested using Go `1.5.x` and `1.6.x`
|
|
|
|
#### Install the latest stable version of Echo via `go get`
|
|
|
|
```sh
|
|
$ go get github.com/labstack/echo
|
|
```
|
|
|
|
#### Update
|
|
|
|
```sh
|
|
$ go get -u github.com/labstack/echo
|
|
```
|
|
|
|
#### [Migrating from v1](/guide/migrating)
|
|
|
|
Echo follows [semantic versioning](http://semver.org) managed through GitHub releases.
|
|
Specific version of Echo can be installed using a [package manager](https://github.com/avelino/awesome-go#package-management).
|