Created
April 20, 2015 08:19
-
-
Save samklr/0b8a0620f82005e7f556 to your computer and use it in GitHub Desktop.
Install Protobuf debian ...
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /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 |
everything what can, like configure
, make
and make check
are normally run without sudo btw
Does not work for me, it still is libprotoc 3.4.0.
Very helpful. Thank you so much.
it works for me. thanks a lot
Thanks you so much !!!
Thank you!
Helps a lot! Thank you man
Thank you so much! This made my day.
Awesome! Thank u a lot!
tks bro
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks you so much for this!