web-dev-qa-db-ja.com

ubuntu12.04にpostgresql9.3をインストールします

Ubuntu12.04にPG9.3をインストールしようとしています

---- Begin output of apt-get -q -y install postgresql-client-9.3=9.3~beta1-1.pgdg12.4+2 ----
STDOUT: Reading package lists...
Building dependency tree...
Reading state information...
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-client-9.3 : Depends: libpq5 (>= 9.3~beta1) but 9.2.4-1.pgdg12.4+1 is to be installedSTDERR: E: Unable to correct problems, you have held broken packages.
---- End output of apt-get -q -y install postgresql-client-9.3=9.3~beta1-1.pgdg12.4+2 ----

Libpq5をインストールしましたが、明らかに間違ったバージョンを取得しています。

正しいバージョンをインストールするにはどうすればよいですか?

6
Toby Hede

これを試して:

wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | Sudo apt-key add -
Sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt/ precise-pgdg main" >> /etc/apt/sources.list.d/postgresql.list'
Sudo apt-get update
Sudo apt-get install postgresql-9.3 pgadmin3

それは私にとってはうまくいきました。

出典: 方法:UbuntuにPostgreSQL 9.3をインストールする–完全ガイド

7
Vipin raj

試してみてください

apt-get install -t precise-pgdg postgresql-client-9.3

この非標準リポジトリからも必要なすべての依存関係を取得するには、「許可」する必要があります。

2

http://pkgs.org/download/libpq5 から一時的にインストールできます。

libpq-devをインストールする場合は、postgresql-server-9.3も必要です。

1
Seuros