update installation section until poll ends

Gerasimos (Makis) Maropoulos 2019-10-05 22:56:47 +03:00
parent ddac9a2f4c
commit b39ef926de
No known key found for this signature in database
GPG Key ID: 5DBE766BD26A54E7

@ -1,30 +1,38 @@
Iris is a cross-platform software. Iris is a cross-platform software.
The only requirement is the [Go Programming Language](https://golang.org/dl/), version 1.12 and above. The only requirement is the [Go Programming Language](https://golang.org/dl/), version 1.13 and above.
```sh ```sh
$ cd $YOUR_PROJECT_PATH
$ export GO111MODULE=on $ export GO111MODULE=on
$ go get github.com/kataras/iris@v11.2.8
``` ```
Or inside your `go.mod` file: ## Install
```sh
$ go get github.com/kataras/iris@master
```
Or edit your project's `go.mod` file, add the following [pseudo-version](https://golang.org/cmd/go/#hdr-Pseudo_versions) and execute `$ go build`.
```sh ```sh
module your_project_name module your_project_name
go 1.12 go 1.13
require ( require (
github.com/kataras/iris v11.2.8 github.com/kataras/iris v0.0.0-20191005193354-55afd07befa8
) )
``` ```
> `$ go build`
## How to update ## How to update
Here is the go-get command to get the latest and greatest Iris version. Master branch is usually stable enough. Here is the go-get command to get the latest and greatest Iris version. Master branch is usually stable enough.
```bash ```bash
$ go get github.com/kataras/iris@master $ go get -u github.com/kataras/iris
``` ```
Continue by reading our [[Getting Started]] tutorial. Continue by reading our [[Getting Started]] tutorial.