美文网首页
windows下安装golang使用protobuf

windows下安装golang使用protobuf

作者: 大啸 | 来源:发表于2018-10-13 11:47 被阅读0次

    一、安装protobuf

    1.去github下载protobuf,网址是https://github.com/google/protobuf,按照readme的步骤来编译安装。

    2.确保你的电脑上安装了go的编译器以及相关工具,具体参考go编译器的安装方式,安装好了,所需的工具就有了

    3.安装git工具

    4.在命令提示行中输入go get github.com/golang/protobuf/protoc-gen-go,稍等片刻会生成protoc-gen-go.exe等相关工具,将该文件夹添加到环境变量Path中

    5.安装protobuf,输入go get github.com/golang/protobuf/proto

    6.找到protoc.exe将其添加到环境变量

    二、测试

    1.新建test.proto文件添加以下内容

    syntax = "proto3";

    package Test;

    message test_msg

    {

        int32 num= 1;

    }

    2.输入命令protoc --go_out=. test.proto

    如果成功会生成test.pb.go文件

    相关文章

      网友评论

          本文标题:windows下安装golang使用protobuf

          本文链接:https://www.haomeiwen.com/subject/llkoaftx.html