回答:
これが私が問題を解決した方法です。
この問題は、pgadminのリポジトリがローカルマシンに追加されていないために発生します。この問題を解決するには、以下を実行してください。
ターミナルを開き、以下のコマンドを入力してください
sudo nano /etc/apt/sources.list.d/pgdg.list
nanoエディターが開いたら、以下の行をコピーして貼り付けます
deb http://apt.postgresql.org/pub/repos/apt/ bionic-pgdg main
そして、Ctrl + Sを押して保存し、nanoエディターを終了します。
その後、ターミナルを再度開き、以下のコマンドを実行します:
sudo wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
sudo apt update
最後に、コマンドを実行してpgadmin4とpgadmin4-apache2をインストールします
sudo apt install pgadmin4 pgadmin4-apache2
それで全部です。
これがお役に立てば幸いです。
Ubuntu 18.04の場合、Postgresqlリポジトリとキーをaptに追加する必要があります。
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/ `lsb_release -cs`-pgdg main" >> /etc/apt/sources.list.d/pgdg.list'
この後、実行する必要があります
sudo apt update
次に、インストールできます。「sudo apt install pgadmin4 pgadmin4-apache2 -y」
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.
とすると、pgadmin4がubuntu 19.10でサポートされていないということです。