Skip to content

Instantly share code, notes, and snippets.

@Priyanka-xlnx
Forked from samklr/install-proto.sh
Created August 4, 2020 12:53
Show Gist options
  • Select an option

  • Save Priyanka-xlnx/05886f0ab0086ffd3bcb1b42d327c916 to your computer and use it in GitHub Desktop.

Select an option

Save Priyanka-xlnx/05886f0ab0086ffd3bcb1b42d327c916 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