Skip to content

Instantly share code, notes, and snippets.

View CaptainZidgel's full-sized avatar
🦀

Zidgel CaptainZidgel

🦀
  • California
View GitHub Profile
@diegopacheco
diegopacheco / latest-protobuf-ubuntu-18-04.md
Created June 7, 2018 20:13
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