通过 'go get github.com/gin-gonic/gin' 安装 Gin 时出现问题

Problem with installation of Gin via 'go get github.com/gin-gonic/gin'

我正在尝试安装 Gin,但在 Ubuntu 终端中遇到以下问题:

/go/src$ go get github.com/gin-gonic/gin
package github.com/gin-gonic/gin: no Go files in /home/user/go/src/github.com/gin-gonic/gin

当我使用 -u 时,错误有点不同:

/go/src$ go get -u github.com/gin-gonic/gin
package github.com/gin-gonic/gin: directory "/home/user/go/src/github.com/gin-gonic/gin" is not using a known version control system

我试过硬安装:

sudo apt-get install -y golang-github-gin-gonic-gin-dev

但是有很多不便,比如 lib/pq 在保存时消失-意味着 mod.go 不允许安装,当 Gin 项目中 运行 main.go ->面临以下问题:

Lec13$ go run main.go
routes/routes.go:4:2: package Lec13/controllers is not in GOROOT (/usr/local/go/src/Lec13/controllers)

也许有人知道解决这个问题的方法?

提前致谢。

如果您确定您的系统中安装了 go,您可以尝试将 golang 添加到您的 $path 变量中。

export PATH=$PATH:$HOME/go/bin

然后你可以再试一次。