1*9712c20fSFrederick MayleIf you wish to use these protobufs, you must generate their source files 2*9712c20fSFrederick Mayleusing protoc from the protobuf project (https://github.com/google/protobuf). 3*9712c20fSFrederick Mayle 4*9712c20fSFrederick Mayle----- 5*9712c20fSFrederick MayleTroubleshooting for Protobuf: 6*9712c20fSFrederick Mayle 7*9712c20fSFrederick MayleInstall: 8*9712c20fSFrederick MayleIf you are getting permission errors install, make sure you are not trying to 9*9712c20fSFrederick Mayleinstall from an NFS. 10*9712c20fSFrederick Mayle 11*9712c20fSFrederick Mayle 12*9712c20fSFrederick MayleRunning protoc: 13*9712c20fSFrederick Mayleprotoc: error while loading shared libraries: libprotobuf.so.0: cannot open 14*9712c20fSFrederick Mayleshared object file: No such file or directory 15*9712c20fSFrederick Mayle 16*9712c20fSFrederick MayleThe issue is that Ubuntu 8.04 doesn't include /usr/local/lib in 17*9712c20fSFrederick Maylelibrary paths. 18*9712c20fSFrederick Mayle 19*9712c20fSFrederick MayleTo fix it for your current terminal session, just type in 20*9712c20fSFrederick Mayleexport LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib 21