[Fixed]-ModuleNotFoundError: No module named 'django.utils.six'

7👍

Django 3 has removed support for six, from the release notes:

While Python 2 support was removed in Django 2.0, some private APIs weren’t removed from Django so that third party apps could continue using them until the Python 2 end-of-life.

Since we expect apps to drop Python 2 compatibility when adding support for Django 3.0, we’re removing these APIs at this time.

django.utils.six – Remove usage of this vendored library or switch to six.

Leave a comment