[Fixed]-Django 1.10 path is on mount 'C:', start on mount 'D:'

1👍

You are running makemigrations from another drive (not from C: where django is installed).

There was a bug with makemigrations on Windows:

So to fix this error you should:

  • move your Django project (your Python code) on C: drive
  • or update your Django version (to Django 1.11)

Leave a comment