安装protobuf-2.5.0,执行protoc --version
出现错误
protoc: error while loading shared libraries: libprotobuf.so.8: cannot open shared object file: No such file or directory
使用export LD_LIBRARY_PATH="usr/local/lib"倒是可以
其他:(没试过)
1)使用export LD_LIBRARY_PATH=¥LD_LIBRARY_PATH:usr/local/lib
2)在/etc/ld.so.conf中加入xxx.so所在的目录。 在/etc/ld.so.conf中加入/usr/local/lib这行,可以解决此类问题。
原文链接:https://www.f2er.com/ubuntu/350715.html