Skip to content

Commit fa6f695

Browse files
authored
Updated README.md with new install command
'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
1 parent 71f9010 commit fa6f695

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Assuming you have a working Go environment and `GOPATH/bin` is in your
1616
`PATH`, `gin` is a breeze to install:
1717

1818
```shell
19-
go get github.com/codegangsta/gin
19+
go install github.com/codegangsta/gin@latest
2020
```
2121

2222
Then verify that `gin` was installed correctly:

0 commit comments

Comments
 (0)