1👍
✅
django.db.models.loading
was removed in Django 1.9. You need install the same version of Django on the old and new systems.
Django is pretty good about backwards compatibility, but you can’t upgrade from one version to the next and assume that everything is going to work. You need to read through the release notes first (e.g 1.9), and make any required code changes.
Source:stackexchange.com