Skip to content

Instantly share code, notes, and snippets.

@mehikmat
Created May 21, 2015 03:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mehikmat/6f1a6a53c6bb6572b7e8 to your computer and use it in GitHub Desktop.
Save mehikmat/6f1a6a53c6bb6572b7e8 to your computer and use it in GitHub Desktop.
Protobuff installation in linux
sudo apt-get remove protobuf-compiler
sudo ldconfig
sudo apt-get install g++
g++ --version
wget http://protobuf.googlecode.com/files/protobuf-2.5.0.tar.gz
tar xzf protobuf-2.5.0.tar.gz
cd protobuf-2.5.0
./configure
make
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