Answers for "ImportError: No module named psycopg2"

5

no module psycopg2

# For quick install
pip install psycopg2-binary

# For production-ready install
pip install psycopg2
# But it will fail if build prerequesties are not met:
# https://www.psycopg.org/docs/install.html#build-prerequisites
Posted by: Guest on June-04-2020
0

ModuleNotFoundError: No module named 'psycopg2'

pip install psycopg2
Posted by: Guest on March-18-2020
1

No module named 'psycopg2'

$ pip install psycopg2 
# or
$ pipenv install psycopg2
Posted by: Guest on March-11-2021
1

No module named 'psycopg2'

pip install psycopg2
Posted by: Guest on October-20-2020

Code answers related to "ImportError: No module named psycopg2"

Python Answers by Framework

Browse Popular Code Answers by Language