django開発のいくつかの問題を記録します


1.    : django.core.exceptions.ImproperlyConfigured: AUTH_USER_MODEL refers to model 'users.UsersProfile' that has not been installed
PS:
AUTH_USER_MODEL = "users.UsersProfile"  #        django                 ...              !

users:あなたのapp名
UsersProfile:あなたのモデル名
2つの理由:
A.あなたのdjango appはINSTALLEDにいないかもしれません.APPSの中
B.君の不注意かもしれないAUTH_USER_MODELはあなたのモデル名と合わない...
(ps:私は2つ目です....)   
後で更新を続けます...