protoc命令找不到问题:
下载地址:https://github.com/google/protobuf/releases
选择protoc-xxx-win32.zip下载
找到protoc.exe文件 把他扔到 c:/windows/system32目录下
出现以下错误解决方案:
>protoc --go_out=./ *.proto
'protoc-gen-go' 不是内部或外部命令,也不是可运行的程序
或批处理文件。
--go_out: protoc-gen-go: Plugin failed with status code 1.
如图报错 :
需要安装:
git clone https://github.com/golang/protobuf
打开protoc-gen-go文件
运行 go build go build -o protoc-gen-go main.go
生成exe文件放在c:/windows/system32 目录下