我的机器上的二进制文件需要 libprotobuf-c.so.1。我知道这是 Google Protocol Buffer 库。但是我该如何安装这个特定版本呢?
我在 packages.ubuntu.com 上搜索过这个库,但是找不到它。
我尝试使用以下命令在 Ubuntu 14.04 上安装此库,但是未找到该包:
sudo apt install libprotobuf-c
sudo apt install libprotobuf-c1
答案1
libprotobuf-c.so.1
由libprotobuf-c1Ubuntu 18.04 中的软件包。
打开终端并运行以下命令:
cd ~/Downloads
wget https://mirrors.kernel.org/ubuntu/pool/universe/p/protobuf-c/libprotobuf-c1_1.2.1-2_amd64.deb
sudo apt install ./libprotobuf-c1_1.2.1-2_amd64.deb
如果您的 Ubuntu 14.04 是 32 位架构,则需要下载 protobuf-c/libprotobuf-c1_1.2.1-2_i386.deb。