Latest version of Echo supports last four Go major releases and might work with older versions.
As of version 4.0.0, Echo is available as a Go module. Therefore a Go version capable of understanding /vN suffixed imports is required:
Any of these versions will allow you to import Echo as github.com/labstack/echo/v4 which is the recommended way of using Echo going forward.
For older versions, please use the latest v3 tag
Run this command to start your server
go run main.go
Browse to http://localhost:4000 and you should see Hello, Echo Framework! on the page.