Opened 8 years ago

Closed 8 years ago

#27094 closed Uncategorized (needsinfo)

ImportError: No module named 'django.core.checks.compatibility.django_1_10'

Reported by: Elohina Owned by: nobody
Component: Uncategorized Version: 1.10
Severity: Normal Keywords: django1.0
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Tim Graham)

I made some changes in my models and after that I try to do thing like use the shell, makemigrations or runserver and only I get this error

Traceback (most recent call last):
  File "manage.py", line 8, in <module>
    from django.core.management import execute_from_command_line
  File "/home/bellbank/projects/risk_reports_site/risk_reports_site/lib/python3.5/site-packages/django/core/management/__init__.py", line 13, in <module>
    from django.core.management.base import (
  File "/home/bellbank/projects/risk_reports_site/risk_reports_site/lib/python3.5/site-packages/django/core/management/base.py", line 13, in <module>
    from django.core import checks
  File "/home/bellbank/projects/risk_reports_site/risk_reports_site/lib/python3.5/site-packages/django/core/checks/__init__.py", line 13, in <module>
    import django.core.checks.compatibility.django_1_10  # NOQA isort:skip
ImportError: No module named 'django.core.checks.compatibility.django_1_10'

Change History (1)

comment:1 by Tim Graham, 8 years ago

Description: modified (diff)
Resolution: needsinfo
Status: newclosed

Does django_1_10.py exist on your system? Did you try reinstalling Django? We need steps to reproduce the problem.

Note: See TracTickets for help on using tickets.
Back to Top