我已安装python-social-auth==0.3.6
。然后我迁移并收到错误:
from social_django.models import AbstractUserSocialAuth, UserSocialAuth, Nonce, Association, Code, DjangoStorage
ImportError: No module named 'social_django'
答案 0 :(得分:0)
[更新]:对我有用的是:
pip install python-social-auth[django]
'django_social',
INSTALLED_APPS
./manage.py migrate
您需要安装python-social-auth[django]
:
pip install python-social-auth[django]
然后将'social.apps.django_app.default'
添加到您的INSTALLED_APPS
。
然后不要忘记运行迁移:./manage.py migrate
答案 1 :(得分:0)
我决定用
pip install django-rest-framework-social-oauth2==1.0.4 social-auth-core==0.2.1 python-social-auth==0.2.21 django-oauth-toolkit==0.10.0