Search code examples
djangomigrationpython-3.5makemigrations

error while using makemigration in django


I am working on a development server running python3.5 and Django 1.11 with virtualenv

when I use "python manage.py makemigrations" 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 "/opt/hafez_bot/env/lib/python3.5/site-packages/django/core/management/__init__.py", line 13, in <module> from django.core.management.base import ( File "/opt/hafez_bot/env/lib/python3.5/site-packages/django/core/management/base.py", line 17, in <module> from django.db.migrations.exceptions import MigrationSchemaMissing File "/opt/hafez_bot/env/lib/python3.5/site-packages/django/db/migrations/__init__.py", line 1, in <module> from .migration import Migration, swappable_dependency # NOQA ImportError: No module named 'django.db.migrations.migration'

please help me


I understood that it's about my "manage.py" file and it has nothing to do with migration. because the "python manage.py help" raises the same error

this is my "pip freeze" output:

certifi==2017.7.27.1
Django==1.11.6
djangorestframework==3.6.4
future==0.16.0
mysqlclient==1.3.12
python-telegram-bot==8.0
pytz==2017.2

Solution

  • I removed Django and I reinstalled it. And the error fixed