Gitをインストールしようとしたときに満たされていない依存関係

Gitをインストールしようとしたときに満たされていない依存関係

この種の質問がたくさんあることがわかっていて、たくさんのスレッドを読みました(特にこれ)「簡単な」解決策を見つけずに(DEBIAN/controlパッケージファイルを編集せずに)この種の問題を解決します。

問題はこれである:

Lila ~ # apt-get -f install
Reading package lists... Done
Building dependency tree
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 1757 not upgraded.

Lila ~ # cat /etc/apt/sources.list | grep -v '#'
deb [arch=amd64,i386]  http://ftp.fr.debian.org/debian/ stretch main non-free contrib
deb http://security.debian.org/debian-security stretch/updates main
deb http://ftp.debian.org/debian stretch-backports main
deb ftp://ftp.deb-multimedia.org stretch main non-free

Lila ~ # apt-cache policy git
git:
Installed: 1:2.11.0-3+deb9u1
Candidate: 1:2.11.0-3+deb9u1
Version table:
    1:2.14.1-3~bpo9+1 100
        100 http://ftp.debian.org/debian stretch-backports/main amd64 Packages
*** 1:2.11.0-3+deb9u1 500
        500 http://security.debian.org/debian-security stretch/updates/main amd64 Packages
        100 /var/lib/dpkg/status
    1:2.11.0-3 500
        500 http://ftp.fr.debian.org/debian stretch/main amd64 Packages

Lila ~ # apt-get install git=1:2.14.1-3~bpo9+1
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:
git : Depends: git-man (> 1:2.14.1) but 1:2.11.0-3+deb9u1 is to be installed
E: Unable to correct problems, you have held broken packages.

人間が読める形式:これが機能するには、git> = 2.13をインストールする必要があります。私は現在Debian stableを使用しています(これが変わったような気がします)。バックポートからテストバージョンをインストールしようとしています。

ベストアンサー1

自動答え:私はついにapt-getにStretch-backportsからこのバージョンをインストールするように指示する必要があることに気づきました。

apt-get install -t stretch-backports git

=>働いた

おすすめ記事