Necesita instalar postgresql-server-dev-XY para crear una extensión del lado del servidor o libpq-dev para crear una aplicación del lado del cliente.
Estoy trabajando en el proyecto Django con virtualenv y lo conecto a la base de datos local de Postgres. cuando ejecuto el proyecto dice,
ImportError: No module named psycopg2.extensions
luego usé este comando para instalar
pip install psycopg2
luego, durante la instalación, aparece el siguiente error.
Downloading/unpacking psycopg2==2.4.4
Downloading psycopg2-2.4.4.tar.gz (648kB): 648kB downloaded
Running setup.py (path:/home/muhammadtaqi/Projects/MyProjects/OnlineElectionCampaign/venv/build/psycopg2/setup.py) egg_info for package psycopg2
Error: You need to install postgresql-server-dev-X.Y for building a server-side extension or libpq-dev for building a client-side application.
Complete output from command python setup.py egg_info:
running egg_info
creating pip-egg-info/psycopg2.egg-info
writing pip-egg-info/psycopg2.egg-info/PKG-INFO
writing top-level names to pip-egg-info/psycopg2.egg-info/top_level.txt
writing dependency_links to pip-egg-info/psycopg2.egg-info/dependency_links.txt
writing manifest file 'pip-egg-info/psycopg2.egg-info/SOURCES.txt'
warning: manifest_maker: standard file '-c' not found
Error: You need to install postgresql-server-dev-X.Y for building a server-side extension or libpq-dev for building a client-side application.
----------------------------------------
Cleaning up...
Command python setup.py egg_info failed with error code 1 in /home/muhammadtaqi/Projects/MyProjects/OnlineElectionCampaign/venv/build/psycopg2
Storing debug log for failure in /home/muhammadtaqi/.pip/pip.log
Aceptado
Utilice los siguientes comandos, esto resolverá el error:
sudo apt-get install postgresql
luego dispara:
sudo apt-get install python-psycopg2
y última:
sudo apt-get install libpq-dev
Simplemente ejecuto este comando como root desde la terminal y el problema está resuelto.
sudo apt-get install -y postgis postgresql-9.3-postgis-2.1
pip install psycopg2
o
sudo apt-get install libpq-dev python-dev
pip install psycopg2
Simplemente instale libpq-dev
$ sudo apt-get install libpq-dev
Para mí, este simple comando resolvió el problema:
sudo apt-get install postgresql postgresql-contrib libpq-dev python-dev
Entonces puedo hacer:
pip install psycopg2
Para Python 3, hice:
sudo apt install python3-dev postgresql postgresql-contrib python3-psycopg2 libpq-dev
y luego pude hacer:
pip3 install psycopg2