Skip to content

Instantly share code, notes, and snippets.

View ahmadudin's full-sized avatar
🏠
Working from home

Ahmad S ahmadudin

🏠
Working from home
View GitHub Profile
@ahmadudin
ahmadudin / latest-protobuf-ubuntu-18-04.md
Last active April 15, 2020 06:30 — 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