Django NodeNotFoundError during migration

前端 未结 4 1354
梦毁少年i
梦毁少年i 2021-01-08 01:12

The error I get when I try to runserver for my django app is as follows:

django.db.migrations.graph.NodeNotFoundError: Migra

4条回答
  •  隐瞒了意图╮
    2021-01-08 01:57

    It worked for me with pip install --upgrade django

    I got the same error on installing a new package which also downgraded my Django to version 1.8.16

    pip install --upgrade django installed back the 1.10.3 version (on which I had been working ever since I started with my project) and that solved the problem.

提交回复
热议问题