0
C:\Users\Administrator\Documents\code\projects\weatherly>go get -u github.com/gofiber/fiber/v2 
cannot find package "github.com/gofiber/fiber/v2" in any of:
        c:\go\src\github.com\gofiber\fiber\v2 (from $GOROOT)
        C:\Users\Administrator\go\src\github.com\gofiber\fiber\v2 (from $GOPATH)

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

4

1 回答 1

1

这是因为你还没有启动你的模块,你应该使用go mod init YourModuleName,那么它很简单。还从 go get 命令中删除 -f。

于 2021-01-25T07:29:06.053 回答