mirror of
https://github.com/labstack/echo.git
synced 2024-12-24 20:14:31 +02:00
24 lines
482 B
Markdown
24 lines
482 B
Markdown
|
---
|
||
|
title: Installation
|
||
|
menu:
|
||
|
main:
|
||
|
parent: guide
|
||
|
---
|
||
|
|
||
|
Echo has been developed and tested using Go `1.4.x`
|
||
|
|
||
|
Install the latest version of Echo via `go get`
|
||
|
|
||
|
```sh
|
||
|
$ go get github.com/labstack/echo
|
||
|
```
|
||
|
|
||
|
To upgrade
|
||
|
|
||
|
```sh
|
||
|
$ go get -u github.com/labstack/echo
|
||
|
```
|
||
|
|
||
|
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).
|