Skip to content

Instantly share code, notes, and snippets.

@billyriantono
Forked from samklr/install-proto.sh
Created July 29, 2016 23:50
Show Gist options
  • Save billyriantono/9086002ad2e57697bbfd58ae25be7d80 to your computer and use it in GitHub Desktop.
Save billyriantono/9086002ad2e57697bbfd58ae25be7d80 to your computer and use it in GitHub Desktop.
Install Protobuf debian ...
#! /bin/bash
wget https://github.com/google/protobuf/releases/download/v2.6.1/protobuf-2.6.1.tar.gz
tar xzf protobuf-2.6.1.tar.gz
cd protobuf-2.6.1
sudo apt-get update
sudo apt-get install build-essential
sudo ./configure
sudo make
sudo make check
sudo make install
sudo ldconfig
protoc --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment