web-dev-qa-db-ja.com

Ubuntu Quantalにcunitをインストールする

Quantal(64bit)にcunit(C単体テストフレームワーク)パッケージをインストールしようとしています。 cunitは多くのパッケージで保持されているようですが、apt-getこれらは壊れています。

試行1:

$ Sudo apt-get -f install libcunit1-*
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Note, selecting 'libcunit1-ncurses' for regex 'libcunit1-*'
Note, selecting 'libcunit1-dev' for regex 'libcunit1-*'
Note, selecting 'libcunit1-doc' for regex 'libcunit1-*'
Note, selecting 'libcunit1' for regex 'libcunit1-*'
Note, selecting 'libcunit1-ncurses-dev' for regex 'libcunit1-*'
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.
 libcunit1-ncurses : Conflicts: libcunit1 but 2.1-0.dfsg-10 is to be installed
 libcunit1-ncurses-dev : Conflicts: libcunit1-dev but 2.1-0.dfsg-10 is to be installed
E: Unable to correct problems, you have held broken packages.

試行2:

$ Sudo apt-get -f install 2.1-0.dfsg-10
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package 2.1-0.dfsg-10
E: Couldn't find any package by regex '2.1-0.dfsg-10'

何か案は?

1
snim2

Synaptic(ソフトウェアセンターから簡単にインストールできます)を試して、必要なパッケージをインストールできるかどうかを確認します。

4
Anonymous