From fa6f6955f996324ee3acba1643f5f38385513d99 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Fri, 25 Mar 2022 23:12:52 +0100 Subject: [PATCH] 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 https://github.com/golang/go/issues/40276 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 29fded6..04833fd 100644 --- a/README.md +++ b/README.md @@ -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: