因此,我试图使用过去几个月来一直为我工作的方法来安装dsc21。我使用的命令如下
echo "deb http://debian.datastax.com/community stable main" | tee -a /etc/apt/sources.list.d/cassandra.sources.list
curl -L http://debian.datastax.com/debian/repo_key | apt-key add -
apt-get -q -y install dsc21这件事今天对我不起作用了,我说错了
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:
dsc21 : Depends: cassandra (= 2.1.8) but 2.2.0 is to be installed
E: Unable to correct problems, you have held broken packages.基本上,我认为问题在于,在我不需要重新安装的时候,我认为datastax推动了dsc22并执行了apt-get install dsc22。不过,我现在不能升级,因为这意味着升级我使用的所有其他软件。
编辑:我使用的操作系统是"ubuntu/trusty64“
Edit2:我尝试过运行apt-get install dsc21=2.1.8-1,它会产生与上面相同的错误
发布于 2015-07-24 19:15:33
在错误之后,也为cassandra包指定正确的版本!apt-get install dsc21=2.1.8-1 cassandra=2.1.8
https://stackoverflow.com/questions/31617691
复制相似问题