Skip to content

Instantly share code, notes, and snippets.

View nguyen0096's full-sized avatar
๐Ÿ”
Actively looking for job

Nguyen DN nguyen0096

๐Ÿ”
Actively looking for job
  • Persefoni
  • Viet Nam
  • 18:17 (UTC +07:00)
View GitHub Profile
@nguyen0096
nguyen0096 / latest-protobuf-ubuntu-18-04.md
Created January 17, 2021 04:09 — 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