なぜ mono-complete をインストールできないのですか?

なぜ mono-complete をインストールできないのですか?

インストールしようとすると、次の結果が表示されます。

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:
 mono-complete : Depends: mono-devel (= 3.12.1-0xamarin1) but it is not going to be installed
                 Depends: mono-4.0-service (= 3.12.1-0xamarin1) but it is not going to be installed
                 Depends: libmono-cil-dev (= 3.12.1-0xamarin1) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

答え1

他の人のために、この問題が私の場合に発生したシナリオを1つ紹介します。最新のJenkins Dockerリポジトリこれは Debian 8 "jessie" をベースにしています。

私は通常のモノラルインストール手順を実行しました。

apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
echo "deb http://download.mono-project.com/repo/debian wheezy main" | tee /etc/apt/sources.list.d/mono-xamarin.list

その後、apt-get install -y mono-devel依存関係が満たされずに失敗しました。

Dockerイメージをリロードしてインストールを実行してみましたそれなし上記の 2 つのコマンドを実行しました。突然、動作するようになりました。

どうやら、最新の (2016 年 3 月 30 日現在) Jenkins イメージでは、mono の標準サードパーティ リポジトリは必要ありません。

関連情報