Ubuntu 14.04を使用しています。 このガイド を使用してpostgresqlをダウンロードしようとしています。
しかし、端末でSudo apt-get install postgresql-9.4
コマンドを実行すると、次のエラーメッセージが表示されます。
E: Unable to locate package postgresql-9.4
E: Couldn't find any package by regex 'postgresql-9.4'
何が間違っていますか?
これは、Ubuntu 14.04リポジトリにpostgresql-9.3バージョンがあるためです。だから実行
Sudo apt-get install postgresql-9.3
Ubuntu 14.04にpostgres 9.4をインストールできます!
http://www.postgresql.org/download/linux/ubuntu/ の指示に従ってください:
ファイル
/etc/apt/sources.list.d/pgdg.list
を作成し、リポジトリの行を追加します。deb http://apt.postgresql.org/pub/repos/apt/ trusty-pgdg main
リポジトリ署名キーをインポートし、パッケージリストを更新します。
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | \ Sudo apt-key add - Sudo apt-get update
これでインストールできます
Sudo apt-get install postgresql-9.4