提问者:小点点

无法使用protobuf包


看来我无法导入这个包:github。com/golang/protobuf/proto

当我尝试构建或使用go-get时,我得到:无法加载github。com/golang/protobuf/proto:github模块。com/golang/protobuf@latest(v1.3.2)找到,但不包含包github。com/golang/protobuf/proto

这是一个受欢迎的软件包,我很惊讶它似乎不起作用。https://godoc.org/github.com/golang/protobuf/proto#Marshal

有人遇到过这个吗?

更新:

我只是想导入这个:import(“bytes”“context”“encoding/json”“errors”“fmt”“github.com/golang/protobuf/proto”)

GoLang无法在上述路径中解析proto。。。

我尝试这样安装:$去获取github。com/golang/protobuf/proto-go:查找github。com/golang/protobuf/proto最新获取github。com/golang/protobuf/proto:github模块。com/golang/protobuf@upgrade(v1.3.2)找到,但不包含包github。com/golang/protobuf/proto

update2,不确定该文件如何帮助,但在这里:

package main

import (
    "bytes"
    "context"
    "encoding/json"
    "errors"
    "fmt"
    "github.com/golang/protobuf/proto"
    "go_poc/plugins/com_styx_proto"
    "io/ioutil"
    "net/http"
    "time"
)

func init() {
    fmt.Println("styxBotDetect plugin is loaded!")
}

func (r registrable) RegisterHandlers(f func(
    name string,
    handler func(
        context.Context,
        map[string]interface{},
        http.Handler) (http.Handler, error),
)) {
    f(pluginName, r.registerHandlers)
}

func (r registrable) registerHandlers(ctx context.Context, extra map[string]interface{}, handler http.Handler) (http.Handler, error) {
// skipping some lines here

styxRqBytes, err := proto.Marshal(styxRq)
        if err != nil {
            http.Error(w, err.Error(), http.StatusNotAcceptable)
            return
        }

// more code

共2个答案

匿名用户

原来模块缓存有问题,这就是为什么go工具无法获取/更新依赖项的原因。

在这种情况下,清除模块缓存(可能)有助于:

go clean -modcache

匿名用户

在终端窗口中,请运行以下命令,

go clean -modcache

go get -u github.com/golang/protobuf/proto

然后运行以下命令以获取下载的包并在. mod文件中更新

go mod init Version1
go mod tidy