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 zwithz/1af3e62a6ed0d7f5cadc4c7d2a0b97ea to your computer and use it in GitHub Desktop.
Save zwithz/1af3e62a6ed0d7f5cadc4c7d2a0b97ea to your computer and use it in GitHub Desktop.
How to Install Latest Protobuf on Ubuntu 18.04
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
make
make check
sudo make install
sudo ldconfig
@zwithz
Copy link
Author

zwithz commented Nov 17, 2021

Missing ./configure after ./autogen.sh

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