Skip to content

Instantly share code, notes, and snippets.

@skecskes
Last active February 11, 2020 23:45
Show Gist options
  • Save skecskes/3bdd880e908cafb55975b032c3f632e8 to your computer and use it in GitHub Desktop.
Save skecskes/3bdd880e908cafb55975b032c3f632e8 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
./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