Linux-Mint

如何在 Linux Mint 上安裝 pgAdmin 4

  • January 29, 2022

我正在執行 Linux Mint 19 Tara,並嘗試按照此處的說明將 pgAdmin4 安裝為桌面應用程序。似乎存在涉及儲存庫身份驗證的問題。

PostgreSQL Debian Repository正如我在 apt-key 列表中觀察到的,apt-key 步驟似乎有效。

我沒有deb命令(我想這是 Mint 與 Ubuntu 的區別?),所以我

add-apt-repository http://apt.postgresql.org/pub/repos/apt/ tara-pgdg main

改用了,之後我

deb http://apt.postgresql.org/pub/repos/apt/ bionic main

/etc/apt/sources.list.d/additional-repositories.list.

此時執行apt-get upgrade或者apt-get update顯示錯誤

The repository 'http://apt.postgresql.org/pub/repos/apt bionic Release' does not have a Release file.

我該如何進行?似乎不太可能真的沒有發布文件;我可以在https://apt.postgresql.org/pub/repos/apt/dists/bionic-pgdg/上看到一個身份驗證列表。是我走錯了路還是什麼?

  1. 打開終端並輸入:
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
  1. 打開 Software Sources 並點擊“Additional repositories”並為 Linux Mint 19(它基於 Ubuntu Bionic)粘貼以下內容:
deb http://apt.postgresql.org/pub/repos/apt/ bionic-pgdg main

或 Linux Mint 20(基於 Ubuntu Focal Fossa)的以下內容:

deb http://apt.postgresql.org/pub/repos/apt/ focal-pgdg main

它應該是這樣的: 在此處輸入圖像描述

按“確定”,這將自動更新記憶體。

  1. 現在打開終端並輸入以下內容:
sudo apt update
sudo apt install pgadmin4

那應該安裝pgadmin4。

引用自:https://unix.stackexchange.com/questions/467873