ubuntu16.04 error while loading shared libraries: libprotobuf.so.7: cannot open shared object file: No such file or directory
时间: 2023-11-20 16:54:33 浏览: 265
个错误提示是因为缺少libprotobuf.so.7文件导致的。解决方法如下:
1. 安装并更新apt-file:sudo apt-get install apt-file,sudo apt-file update
2. 搜索缺少的文件:sudo apt-file find libprotobuf.so.7
3. 安装缺少的文件:sudo apt-get install libprotobuf-dev
4. 运行你的程序。
阅读全文