Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save staticor/07b10545ad5874cc276ef4f788f8870b to your computer and use it in GitHub Desktop.
Save staticor/07b10545ad5874cc276ef4f788f8870b to your computer and use it in GitHub Desktop.
install protobuf 2.5 on ubuntu
wget https://github.com/google/protobuf/releases/download/v2.5.0/protobuf-2.5.0.tar.gz
tar xvf protobuf-2.5.0.tar.gz
cd protobuf-2.5.0
./autogen.sh
./configure --prefix=/usr
make
sudo make install
protoc --version
@staticor
Copy link
Author

In the mac m1-chip

protocolbuffers/protobuf#8836

check this

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment