错误在Linux Mint的安装Rethinkdb(libprotobuf7未安装)
问题描述:
我试图在Linux Mint的18塞雷娜安装rethinkdb,我添加了存储库,但是当我执行代码:错误在Linux Mint的安装Rethinkdb(libprotobuf7未安装)
sudo apt-get install rethinkdb
它抛出这个错误:
答
从this issue有效期为薄荷18莎拉,薄荷18.1小威是基于xenial过,它应该工作:
echo "deb http://download.rethinkdb.com/apt xenial main" | sudo tee /etc/apt/sources.list.d/rethinkdb.list
然后在redthinkdb installation instruction规定:
wget -qO- https://download.rethinkdb.com/apt/pubkey.gpg | sudo apt-key add -
sudo apt-get update
sudo apt-get install rethinkdb
看着xenial package,它使用libprotobuf9v5
,所以你可能已经安装了一个错误的信息库链接:
Package: rethinkdb
Version: 2.3.1~0xenial
Architecture: amd64
Maintainer: RethinkDB <[email protected]>
Installed-Size: 38533
Pre-Depends: adduser (>= 3.40), procps (>= 3.2)
Depends: libc6 (>= 2.14), libcurl3 (>= 7.16.2), libgcc1 (>= 1:3.4), libprotobuf9v5, libssl1.0.0 (>= 1.0.1d), libstdc++6 (>= 5.2), zlib1g (>= 1:1.1.4)
检查/etc/apt/sources.list.d/rethinkdb.list
文件,以确保你有xenial
回购
+0
Bertrand解决方案的工作非常感谢。 –
Stack Ove rflow是编程和开发问题的网站。这个问题似乎与题目无关,因为它不涉及编程或开发。请参阅帮助中心的[我可以询问哪些主题](http://stackoverflow.com/help/on-topic)。也许[超级用户](http://superuser.com/)或[Unix&Linux堆栈交换](http://unix.stackexchange.com/)会是一个更好的地方。另请参阅[我在哪里发布有关Dev Ops的问题?](http://meta.stackexchange.com/q/134306) – jww