golang在windows下安裝和使用protobuf

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。

安裝部分

1.在windows下安裝好GO包,下載地址http://www.golangtc.com/download


2.設定GOPATH的環境變數,從github上擷取的protobuf會下載到GOPATH目錄下


3.安裝GIT包,https://git-scm.com/downloads/


4.在PATH變數中添加GIT.exe的路徑D:\Program Files\Git\bin(自己選擇自己安裝的路徑)


5.在CMD中分別運行git和go命令,看看能不能識別這兩個命令,如果不行,應該是1-4中遺漏了某個步驟


6.分別運行

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

go get -u github.com/golang/protobuf/protoc-gen-go

安裝protobuf庫


7.下載protoc.exe,proto產生.go檔案的工具 https://github.com/google/protobuf/releases


8.運行命令 d:\protofile\bin\protoc.exe --plugin=protoc-gen-go=%GOPATH%\bin\protoc-gen-go.exe  --go_out=./ ./gate.proto 來產生gate.pb.go源檔案

d:\protofile\bin\protoc.exe是protoc.exe所在的路徑

--plugin=protoc-gen-go=%GOPATH%\bin\protoc-gen-go.exe 表示protoc-gen-go.exe所在的路徑,如果沒有這行,會提示需要protoc-gen-go

--go_out=./ ./gate.proto 表示根據 ./gate.proto 在 ./ 位置go類型的檔案

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.