web-dev-qa-db-ja.com

postgreSQL 9.6のインストール時の依存関係エラー

Odoo10にpostgreSQLをインストールしているときにこのエラーが発生します。

root@aboorva:~# Sudo apt-get install postgresql-9.6
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:
 postgresql-9.6 : Depends: postgresql-common (>= 171~) but it is not going to be installed
                  Depends: libsystemd0 but it is not installable
                  Recommends: postgresql-contrib-9.6 but it is not going to be installed
                  Recommends: sysstat but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
2
Kumar Aboorva

インストール時に特定のバージョンを要求したため、システムのライブラリではpostgresのそのバージョンをインストールできないことがわかります。

単にpostgresが必要で、特定のバージョンを気にしない場合は、次を試してください。

Sudo apt-get install postgres

その特定のバージョンが必要で、それが必要な場合は、libsystem0パッケージとインストールされているものをすべて削除する必要があります。

また、システムがパッケージの一部をダウンロードしてアップグレードしたか、パッケージの更新中に停止した可能性もあります。その場合、このコマンドを実行して、処理を待機している不足しているパッケージをインストールする必要があります。

Sudo apt-get install -f

また、新しいバージョンをインストールする前に、使用しているバージョンのpostgresを削除することもできます。

Sudo apt-get remove postgres*
2
Kristopher Ives