Skip to content

Instantly share code, notes, and snippets.

View harrytrinh96's full-sized avatar

harrykev harrytrinh96

View GitHub Profile
@harrytrinh96
harrytrinh96 / latest-protobuf-ubuntu-18-04.md
Created May 31, 2021 05:38 — forked from diegopacheco/latest-protobuf-ubuntu-18-04.md
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