Linux-Mint
如何在 Linux Mint 上安裝 pgAdmin 4
我正在執行 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/上看到一個身份驗證列表。是我走錯了路還是什麼?
- 打開終端並輸入:
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
- 打開 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
按“確定”,這將自動更新記憶體。
- 現在打開終端並輸入以下內容:
sudo apt update sudo apt install pgadmin4
那應該安裝pgadmin4。