Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 783 Bytes

InstallingIris.md

File metadata and controls

38 lines (26 loc) · 783 Bytes

下载(Installation)

Iris是一个跨平台框架。 唯一需要的是go语言的环境, 要求版本在1.14及以上。

go env -w GO111MODULE=on

安装(Install)

go get github.com/kataras/iris/[email protected]

或者可以编辑你项目的go.mod文件。

module your_project_name

go 1.14

require (
    github.com/kataras/iris/v12 v12.1.8
)
go build

故障排除(TroubleShooting)

如果你在安装iris的时候遇到了错误, 请确保你设置了合法的GOPROXY环境变量

go env -w GOPROXY=https://goproxy.cn,https://gocenter.io,https://goproxy.io,direct