Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can`t install libpq-dev

Tags:

python

pip

libpq

I am trying to install libpq-dev as postgres requires it, but I only get an error.

pip install libpq-dev==9.4.3

Could not find a version that satisfies the requirement libpq-dev==9.4.3 (from versions: )
No matching distribution found for libpq-dev==9.4.3
like image 899
seoful Avatar asked Apr 21 '26 15:04

seoful


1 Answers

Not a python package, use this instead

sudo apt-get install libpq-dev
like image 134
Ayush Pallav Avatar answered Apr 23 '26 04:04

Ayush Pallav