Reputation: 429
i was working on a project on django using one of my system(win8) now i have changed my system.how do i continue working from where i left off on my new system(win7).i have a copy of the old django project file directory and nothing else,i have installed python and django on my new system and just copying that file directory and running python manage.py runserver
on new system doesnt work(i wasnt hoping that it would work anyway) so what should i do?i am new in django and python so if anyone can explain me in detail.if my question arise any confusion please leave a comment.
Upvotes: 0
Views: 1273
Reputation: 308779
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.
Upvotes: 1