Skip to content

Instantly share code, notes, and snippets.

@ryujaehun
Last active July 11, 2018 00:08
Show Gist options
  • Save ryujaehun/3ac3442d91c180d483bf375e7442a713 to your computer and use it in GitHub Desktop.
Save ryujaehun/3ac3442d91c180d483bf375e7442a713 to your computer and use it in GitHub Desktop.
Protocol Buffers install
#! /bin/bash
wget https://github.com/google/protobuf/releases/download/v3.6.0/protobuf-all-3.6.0.tar.gz
tar -zxvf protobuf-all-3.6.0.tar.gz
cd protobuf-all-3.6.0
sudo ./configure
sudo make -j12
sudo make check -j12
sudo make install
sudo ldconfig
protoc --version
cd ../
rm -rf protobuf-all-3.6.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment