精华 安装protobuf的go语言插件protoc-gen-go提示go: module github.com/golang/protobuf is deprecated

安装protobuf的go语言插件protoc-gen-go提示go: module github.com/golang/protobuf is deprecated

C:\Users\zhangyibo>go install github.com/golang/protobuf/protoc-gen-go@latest
go: module github.com/golang/protobuf is deprecated: Use the "google.golang.org/protobuf" module instead.
1 回复

更多关于安装protobuf的go语言插件protoc-gen-go提示go: module github.com/golang/protobuf is deprecated的实战系列教程也可以访问 https://www.itying.com/category-94-b0.html


github.com/golang/protobuf 这个模块已经被官方弃用了,现在应该使用新的模块:google.golang.org/protobuf

用下面方式 安装新的 protoc-gen-go

go install google.golang.org/protobuf/cmd/protoc-gen-go@latest

回到顶部