Installation
Iris is a cross-platform software.
$ go get github.com/kataras/iris/v12@latest
Or edit your project's
go.mod
file.module your_project_name
go 1.20
require (
github.com/kataras/iris/v12 v12.2.0
)
$ go build
If you get a network error during installation please make sure you set a valid GOPROXY environment variable.
go env -w GOPROXY=direct
Perform a clean of your go modules cache if none of the above worked:
go clean --modcache
Last modified 2mo ago