Skip to content

Instantly share code, notes, and snippets.

View tooilxui's full-sized avatar
🐔

Saxon Chuang tooilxui

🐔
  • Taiwan
  • Yuanlin
View GitHub Profile
@tooilxui
tooilxui / latest-protobuf-ubuntu-18-04.md
Last active May 9, 2020 03:14 — 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
./configure
make
make check
sudo make install