Skip to content

Commit

Permalink
Updated README.md with new install command
Browse files Browse the repository at this point in the history
'go get' is no longer supported outside a module.
To build and install a command, use 'go install' with a version,
like 'go install example.com/cmd@latest'

see golang/go#40276
  • Loading branch information
perelin authored Mar 25, 2022
1 parent 71f9010 commit fa6f695
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Assuming you have a working Go environment and `GOPATH/bin` is in your
`PATH`, `gin` is a breeze to install:

```shell
go get github.com/codegangsta/gin
go install github.com/codegangsta/gin@latest
```

Then verify that `gin` was installed correctly:
Expand Down

0 comments on commit fa6f695

Please sign in to comment.