From a83577d2a9c8dd9a74f093b9d3f44c72b442be7c Mon Sep 17 00:00:00 2001 From: Orhan Erday <98099231+orhan-erday@users.noreply.github.com> Date: Thu, 21 Jul 2022 16:47:39 +0300 Subject: [PATCH] 'go get' is no longer supported outside a module. 'go get' is no longer supported outside a module. therefore I changed `go get` to `go install` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2477d0b0..3b79997d 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ To install Gin package, you need to install Go and set your Go workspace first. 1. You first need [Go](https://golang.org/) installed (**version 1.15+ is required**), then you can use the below Go command to install Gin. ```sh -$ go get -u github.com/gin-gonic/gin +$ go install github.com/gin-gonic/gin@latest ``` 2. Import it in your code: