从 debian 上的 ubuntu ppa 安装(包括依赖项)

从 debian 上的 ubuntu ppa 安装(包括依赖项)

我正在尝试在 Debian 7 服务器上安装稳定的最新版 Couchdb。遗憾的是,Debian 存储库中的软件包太旧了(1.2),我需要 1.4 及更高版本。我决定尝试使用 ppa(ppa:couchdb/stable)通过 apt-get 安装它。我成功将 ppa 添加为存储库,但在安装时出现此错误,如下所示:

sudo apt-get install -V couchdb
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 couchdb : Dependes: couchdb-bin (>= 1.5.0-0ubuntu2) but it is not going to be in
stalled
E: Unable to correct problems, you have held broken packages.

我理解它可能找不到具有所需最低版本的所需依赖项,但是我是否必须单独添加每个依赖项的 ppa,或者有没有更简单的方法来做到这一点?

提前致谢,Itay

相关内容