Skip to content

Instantly share code, notes, and snippets.

@ddupg
Last active March 5, 2024 18:10
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ddupg/08118b42376eab110f811c7f4522547e to your computer and use it in GitHub Desktop.
Save ddupg/08118b42376eab110f811c7f4522547e 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment