Skip to content

Instantly share code, notes, and snippets.

@Ujang360
Last active November 12, 2021 13:23
Show Gist options
  • Save Ujang360/1fdfd758ff335c9ff1721961ba8ce152 to your computer and use it in GitHub Desktop.
Save Ujang360/1fdfd758ff335c9ff1721961ba8ce152 to your computer and use it in GitHub Desktop.
Install Protobuf 3.11.4 in Ubuntu 18.04
sudo apt update && sudo apt install autoconf automake libtool curl make g++ unzip -y
git clone --recursive git@github.com:protocolbuffers/protobuf.git
cd protobuf
git checkout v3.11.4 && git checkout -b release/v3.11.4
./autogen.sh
./configure
make
make check
sudo make install
sudo ldconfig
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment