Skip to content

Instantly share code, notes, and snippets.

@anujonthemove
Last active September 26, 2021 01:59
Show Gist options
  • Save anujonthemove/0dbdf3d42a652dcbfc5ba77bd79d3d70 to your computer and use it in GitHub Desktop.
Save anujonthemove/0dbdf3d42a652dcbfc5ba77bd79d3d70 to your computer and use it in GitHub Desktop.
Google Protobuf installation on Ubuntu 18.04 LTS
sudo apt-get install autoconf automake libtool curl make g++ unzip -y
git clone https://github.com/google/protobuf.git
cd protobuf
git submodule update --init --recursive
./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