Arto's Notes re: Protocol Buffers



Languages


Installation

$ mix --force escript.install hex protobuf         # Elixir
$ go get github.com/golang/protobuf/protoc-gen-go  # Go
$ npm install google-protobuf                      # Node.js
$ pecl install protobuf                            # PHP
$ pip3 install protobuf                            # Python 3
$ gem install google-protobuf                      # Ruby

Installation on Ubuntu

https://packages.ubuntu.com/libprotobuf-dev

$ sudo apt install libprotobuf10 libprotobuf-dev

Tutorials

Basics


See Also