Skip to content

Instantly share code, notes, and snippets.

@ddupg
ddupg / install_protobuf2.5_on_ubuntu.md
Last active March 5, 2024 18:10
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