Reputation: 1179
Is there already a way to install the pgAdmin IV Beta desktop runtime e.g. with yum? I found the download link for the Python wheel on the official site, but no hint for yum. It seems the desktop runtime is not available yet?
Upvotes: 3
Views: 19065
Reputation: 189
If you have a problem when you try install pgadmin4
$ yum -y install https://download.postgresql.org/pub/repos/yum/12/redhat/rhel-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
$ yum -y install pgadmin4
ERROR:
Transaction check error: file /usr/lib64/libpq.so.5 from install of libpq5-13.0-10PGDG.rhel7.x86_64 conflicts with file from package postgresql-libs-9.2.24-4.el7_8.x86_64
use:
$ sudo yum -y install pgadmin4 -x libpq5*
... then libpq5... will be ignored and it will be installed
Upvotes: -1
Reputation: 641
Make sure you have the EPEL and pdgd-9x-centos repos enabled
yum install pgadmin4-v1
Upvotes: 4
Reputation: 1879
pgAdmin 4 is included in the official PostgreSQL yum repository.
Add the RPM corresponding to your distribution and run:
sudo yum install pgadmin4
Upvotes: 4