Skip to content

Commit 45ac9fc

Browse files
ruannawelammel
andauthored
prevent this error labstack/echo#1374 (#177)
* Improve installation section to avoid errors like `https://github.com/labstack/echo/issues/1374` Co-authored-by: Roland Lammel <[email protected]>
1 parent d899094 commit 45ac9fc

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

website/content/guide.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,22 @@ type = "guide"
1313

1414
### Installation
1515

16+
To install Echo Go v1.13 or higher is required. Go v1.12 has limited support and some middlewares will not be available.
17+
Make sure your project folder is outside your `$GOPATH`.
18+
1619
```sh
20+
$ mkdir myapp && cd myapp
21+
$ go mod init myapp
1722
$ go get github.com/labstack/echo/v4
1823
```
1924

20-
If you are working with a Go v1.14 or earlier use:
25+
If you are working with Go v1.14 or earlier use:
2126

2227
```sh
2328
$ GO111MODULE=on go get github.com/labstack/echo/v4
2429
```
2530

31+
2632
### Hello, World!
2733

2834
Create `server.go`

0 commit comments

Comments
 (0)