I installed the registration module, added it to settings.py. When I tried to run syncdb (% python sitename/manage.py syncdb --settings sitename.devsettings)
It gav
I ran into this problem because I was messing up with my virtualenv.
I had two windows open:
I had successfully installed the Django-registration package into my venv on my Windows computer:
$ . venv/Scripts/activate
$ pip install Django-registration-redux==2.0
But my server was not in the venv, so it could not find the package.
Stopped the server, entered venv in that window, then restarted the server and all is good.