Skip to content

Instantly share code, notes, and snippets.

@CheyenneForbes
CheyenneForbes / install-proto.sh
Last active March 13, 2018 15:13 — forked from samklr/install-proto.sh
Install Protobuf debian ...
#! /bin/bash
PB_VERSION=2.5.0
wget https://github.com/google/protobuf/releases/download/v$PB_VERSION/protobuf-$PB_VERSION.tar.gz
tar xzf protobuf-$PB_VERSION.tar.gz
cd protobuf-$PB_VERSION
sudo apt-get update
sudo apt-get install build-essential
sudo ./configure