python - Installing django-userena: userena.compat.SiteProfileNotAvailable when trying to create accounts app -
running django 1.9 i'm trying follow install instructions django-userena, add existing django project.
when try create accounts app:
python manage.py startapp accounts
i error:
userena.compat.siteprofilenotavailable
other questions indicate need set auth_profile_module
, directed in installation instructions. however, these assume have accounts app created, within i've created profile model.
so seem i'm stuck in circular dependancy can't create accounts app without profile model, can't create profile model without accounts app!
also, instructions, doesn't appear auth_profile_module
should required yet @ step, in order create accounts app.
how solve this?
Comments
Post a Comment