为什么我在尝试下载go包时一直收到此消息?


C:UsersAdministratorDocumentscodeprojectsweatherly>go get -u github.com/gofiber/fiber/v2 
cannot find package "github.com/gofiber/fiber/v2" in any of:
c:gosrcgithub.comgofiberfiberv2 (from $GOROOT)
C:UsersAdministratorgosrcgithub.comgofiberfiberv2 (from $GOPATH)

如何下载?我相信它正在尝试检查我的计算机上缓存的内容,我不知道如何先下载它。

这是因为你还没有启动你的模块,你应该使用go mod init YourModuleName,然后它很容易做到。同时从go get命令中删除-f。

相关内容

  • 没有找到相关文章

最新更新