mirror of
https://github.com/labstack/echo.git
synced 2025-01-10 00:28:23 +02:00
24 lines
725 B
Markdown
24 lines
725 B
Markdown
|
+++
|
||
|
title = "Installation"
|
||
|
description = "Installing Echo"
|
||
|
[menu.side]
|
||
|
name = "Installation"
|
||
|
parent = "guide"
|
||
|
weight = 1
|
||
|
+++
|
||
|
|
||
|
## Installation
|
||
|
|
||
|
Echo is developed and tested using Go `1.6.x` and `1.7.x`
|
||
|
|
||
|
```sh
|
||
|
$ go get -u github.com/labstack/echo
|
||
|
```
|
||
|
|
||
|
> Ideally, you should rely on a [package manager](https://github.com/avelino/awesome-go#package-management) like glide or govendor to use a specific [version](https://github.com/labstack/echo/releases) of 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).
|