web-dev-qa-db-ja.com

Ubuntu 16.04アップグレードの依存関係がありません

Ubuntu 14.04から16.04にアップグレードしようとすると、アップグレードが停止し、次のメッセージが表示されました。

Required depends is not installed 
The required dependency 'apt (>= 1.0.1ubuntu2.13)' is not installed.

enter image description here

どうすれば修正できますか?

3
Ray Walker

Ubuntu 14.04で、ターミナルを開いて次のように入力します。

Sudo apt-get install --only-upgrade apt  

その後、Ubuntu 14.04でこのコマンドを実行します。

apt-cache policy apt

これらの結果が生成されるはずです。

apt:
  Installed: 1.0.1ubuntu2.14
  Candidate: 1.0.1ubuntu2.14

最初のコマンドが機能しない場合、長いバージョンは次のとおりです。

Sudo apt-get update
Sudo apt full-upgrade # in 14.04 use Sudo apt-get dist-upgrade instead
Sudo apt-get -f install
Sudo apt-get install --only-upgrade apt
Sudo do-release-upgrade
2
karel

https://launchpad.net/ubuntu/+source/apt/ は、1.0.1ubuntu2.13がセキュリティリポジトリにあり、1.0.1ubuntu2.14が更新リポジトリにあることを示しています。ソースを確認する必要があるかもしれません。

0
starkus