我正在尝试在Red hat 8中安装pgadmin
sudo yum install pgadmin4但是:
No match for argument: pgadmin4
Error: Unable to find a match红帽版本:
Product Name: Red Hat Enterprise Linux for x86_64
Version: 8.0
Arch: x86_64
Status: Subscribed发布于 2019-06-12 22:11:59
您需要先添加Postgres仓库。
dnf install https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm然后按如下方式运行
dnf install pgadmin4发布于 2021-05-04 16:41:29
我不知道是否仍然需要,但我有同样的问题。我在dnf上没有找到pgadmin4存储库,但它在yum上仍然可用。
您只需设置此存储库:
sudo rpm -i https://ftp.postgresql.org/pub/pgadmin/pgadmin4/yum/pgadmin4-redhat-repo-1-1.noarch.rpm然后用yum安装Pgadmin4:
# Install for both desktop and web modes.
sudo yum install pgadmin4
# Install for desktop mode only.
sudo yum install pgadmin4-desktop
# Install for web mode only.
sudo yum install pgadmin4-web这是在pgadmin网站https://www.pgadmin.org/download/pgadmin-4-rpm/上得到的
如果它能帮上忙
https://stackoverflow.com/questions/56541404
复制相似问题