Joan Martinez
Joan Martinez

Reputation: 1

I cannot install the dependencies libpq-devel on my AlmaLinux 8.9 server for Superset

sudo yum install libpq-devel Last metadata expiration check: 1:21:49 ago on Wed 08 May 2024 12:44:27 PM -05. Error: Problem: cannot install the best candidate for the job

I got this error every time i´m trying to install libpq-devel thats needed for psycopg2.

Try alredy with other dependencies like libpq-dev also i alredy try installing perl-CPAN and IPC::Run

Upvotes: 0

Views: 1006

Answers (1)

Kusal
Kusal

Reputation: 1

Seems this package's repo (comes with powertools repo) is not enabled by default on AlmaLinux 8.

To enable the repo;

dnf install epel-release
dnf config-manager --set-enabled powertools

Now it should display under the repo list;

dnf repolist

Now it should be ready to install

dnf install perl-IPC-Run

Upvotes: 0

Related Questions