42
There seems to be a problem with your psycopg2
installation – Python does not find it. This is a Python installation problem, not a Django issue.
You can try to load it manually using the Python interpreter and see if it works:
$ python
>>> import psycopg2
If you get an ImportError
exception, your installation is erroneous. To get a list of all directories Python looks for modules, use sys.path
:
$ python
>>> import sys
>>> print sys.path
You can also add custom directories to Python’s module search path by modifying the sys.path
variable. Do this somewhere before the respective import
statement(s):
import sys
sys.path.append("my-path")
# ...
import psycopg2
30
If you have pip
installed, simply install the missing extension by running:
$ pip install psycopg2
- [Django]-Django, ModelChoiceField() and initial value
- [Django]-Adding attributes into Django Model's Meta class
- [Django]-How to annotate Count with a condition in a Django queryset
18
For the record I got the same error for a different reason:
I had put
'ENGINE': 'django.db.backends.postgresql'
instead of
'ENGINE': 'django.db.backends.postgresql_psycopg2'
in settings.py
- [Django]-Profiling Django
- [Django]-Django – Cannot create migrations for ImageField with dynamic upload_to value
- [Django]-Dynamically add field to a form
7
Follow the steps:
- Install python libraries on your OS:
python-dev
libpq-dev
- Execute the command to install the
psycopg2
library:easy_install psycopg2
- [Django]-Django get the static files URL in view
- [Django]-Django Query Related Field Count
- [Django]-In-Memory broker for celery unit tests
4
I realized I didn’t have psycopg2 installed
aptitude install python-psycopg2
Worked like a charm
- [Django]-Default value for user ForeignKey with Django admin
- [Django]-Django – How to specify which field a validation fails on?
- [Django]-Easiest way to rename a model using Django/South?
4
I had this issue recently after updating homebrew on OSX.
psycopg2 was already listed in my virtualenv.
I just reinstalled psycopg2 and it worked again:
pip install --force-reinstall psycopg2
- [Django]-The STATICFILES_DIRS setting should not contain the STATIC_ROOT setting
- [Django]-Folder Structure for Python Django-REST-framework and Angularjs
- [Django]-Writing test cases for django models
3
Although you installed it, Python can apparently not find the module psycopg2. This is usually due to the module not being in Python’s path. See if you can find a folder named psycopg2 in /Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages
. If it’s not there, did MacPorts tell you where it put psycopg2? If you can locate it, just move it to the site-packages
directory and you should be fine.
- [Django]-How do I match the question mark character in a Django URL?
- [Django]-MySQL vs PostgreSQL? Which should I choose for my Django project?
- [Django]-Error: could not determine PostgreSQL version from '10.3' – Django on Heroku
2
For me, psycopg2 was indeed installed, but not into the virtualenv in which Django was running. These two steps fixed it:
sudo apt-get build-dep python-psycopg2
sudo /opt/myenv/bin/pip install psycopg2
- [Django]-Django: get last user visit date
- [Django]-Phpmyadmin logs out after 1440 secs
- [Django]-How to assign a local file to the FileField in Django?
1
Yes Tim’s answer works for me too.It works without prefix ‘django.db.backends.’ also. But remember to create database or schema you mentioned in settings.py:
DATABASE_NAME = 'your_db_name'
manually using your database client so when you run ‘python manage.py syncdb’ you don’t get the same problem. I was stuck because i didn’t create it manually. I got the same problem may be because I used buildout.
- [Django]-Django REST Framework upload image: "The submitted data was not a file"
- [Django]-Import error django corsheaders
- [Django]-Is there a datetime ± infinity?
1
I got the same error, but it was because I was using python26 ./manage.py runserver
when my virtualenv only had python
and python2.6
executables (thus the system python26
was being used, which didn’t have psycopg2
installed
- [Django]-CSRF verification failed. Request aborted. on django
- [Django]-How to get the ID of a just created record in Django?
- [Django]-Django multiprocessing and database connections
0
Tim’s answer worked for me too.
By default, settings.py shows options like ‘postgresql_psycopg2’, ‘mysql’, etc, without a package name. Prefixing with ‘django.db.backends.’ worked for me (for postgresql_psycopg2, at least).
- [Django]-Add data to ModelForm object before saving
- [Django]-Django: add image in an ImageField from image url
- [Django]-Bulk create model objects in django
0
I’m on Windows and had installed psycopg2, but the 64 bit version. So my fix was to download the 32 bit one from here then in PowerShell with my virtual environment activated, my fix was:
pip uninstall psycopg2
easy_install C:\WHEREVER_I_DOWNLOADED_IT\psycopg2-2.6.1.win32-py3.4-pg9.4.4-release.exe
(The Windows Python 3.4 installer automatically installs easy_install and pip, and pip is the easiest way to remove the package, even if originally installed using easy_install.)
- [Django]-How do Django models work?
- [Django]-Django : How can I find a list of models that the ORM knows?
- [Django]-Django filter vs exclude
0
THIS HAS HELPED ME:
I just added PostgreSQL bin path to ENV and it was able to fine the needed dll:
C:\Program Files (x86)\PostgreSQL\9.4\bin
https://groups.google.com/forum/#!topic/robotframework-users/qLq9KvHe1wE
- [Django]-Ordering admin.ModelAdmin objects in Django Admin
- [Django]-Why Should I use Redis when I have PostgreSQL as my database for Django?
- [Django]-Django template convert to string
0
same here, but maybe it was missed in current project, so I navigated to the main project directory and installed it.
pip install psycopg2
and it worked
- [Django]-Is there a way to loop over two lists simultaneously in django?
- [Django]-Version number in Django applications
- [Django]-'EntryPoints' object has no attribute 'get' – Digital ocean
0
You can get this error in heroku deployment with django postgresql as backend simply add psycopg2 to your requirements.txt file
- [Django]-Django select only rows with duplicate field values
- [Django]-Does SQLAlchemy have an equivalent of Django's get_or_create?
- [Django]-Django: Reference to an outer query may only be used in a subquery
- [Django]-Python regex for integer?
- [Django]-How to query directly the table created by Django for a ManyToMany relation?
- [Django]-Matplotlib – Tcl_AsyncDelete: async handler deleted by the wrong thread?
0
Using Django 3.2.9 with Python 3.9.1, after pip3 install psycopg2
, this is what I had to do in order to get the initial python manage.py migrate
to work:
In my Django site’s settings.py file, I added these lines to the top of the file (after the from pathlib import Path
line):
import sys
sys.path.append('Users/MY_USER_NAME/Sites/SITE_NAME/env/lib/python3.9/site-packages')
Sorry… a ~/Sites/...
path setting doesn’t work (I tried), it needs to be an absolute, full path.
My Database settings are as follows:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'DATABASE_NAME',
'USER': os.getenv('PG_USER'),
'PASSWORD': os.getenv('PG_PASS'),
'PORT': '5432',
'USE_TZ': True,
}
}
Once I added the two lines to the top of the settings.py file, the migration ran successfully
- [Django]-Django: no such table: django_session
- [Django]-Django – accessing the RequestContext from within a custom filter
- [Django]-Django: Is there a way to keep the dev server from restarting when a local .py file is changed and dynamically loaded?
0
For the module not found errors, usually a good
pip install module_name
Will solve the problem. If it’s not the case look for the binary of the module you are trying to install. Install the binary then install the module again. Example for this case the module is
psycopg2
Binary is psychopg2-binary so
Install them like this
pip install psycopg2-binary
pip install psycopg2
- [Django]-Running fabric script locally
- [Django]-Automatic creation date for Django model form objects
- [Django]-Token Authentication for RESTful API: should the token be periodically changed?
0
I am getting the same issue as above shown in the query part. I resolved it by using pip install psycopg2-binary instead of pip install psycopg2 or pip3 install psycopg2.
- [Django]-How to get the username of the logged-in user in Django?
- [Django]-Django: Hide button in template, if user is not super-user
- [Django]-Remove and ignore all files that have an extension from a git repository