python-social-auth with Django: ImportError: No module named 'social_django'

python-social-auth with Django: ImportError: No module named 'social_django'

已安装所有软件包!! 嗨,我正在使用 python 3.5 Django==1.10 我安装了 Python-social-auth 执行命令 Python manage.py 收到传输错误!

Traceback (most recent call last):
File "manage.py", line 22, in 
execute_from_command_line(sys.argv)
File "/home/berluskuni/web_project/exprender/.exprender/lib64/python3.5/site-packages/django
/core/management/init.py", line 367, in execute_from_command_line
utility.execute()
File "/home/berluskuni/web_project/exprender/.exprender/lib64/python3.5/site-packages/django/core/management/init.py", line 341, in execute
django.setup()
File "/home/berluskuni/web_project/exprender/.exprender/lib64/python3.5/site-packages/django/init.py", line 27, in setup
apps.populate(settings.INSTALLED_APPS)
File "/home/berluskuni/web_project/exprender/.exprender/lib64/python3.5/site-packages/django/apps/registry.py", line 108, in populate
app_config.import_models(all_models)
File "/home/berluskuni/web_project/exprender/.exprender/lib64/python3.5/site-packages/django/apps/config.py", line 199, in import_models
self.models_module = import_module(models_module_name)
File "/usr/lib64/python3.5/importlib/init.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "", line 986, in _gcd_import
File "", line 969, in _find_and_load
File "", line 958, in _find_and_load_unlocked
File "", line 673, in _load_unlocked
File "", line 665, in exec_module
File "", line 222, in _call_with_frames_removed
File "/home/berluskuni/web_project/exprender/.exprender/lib64/python3.5/site-packages/social/apps/django_app/default/models.py", line 1, in 
from social_django.models import AbstractUserSocialAuth, UserSocialAuth, Nonce, Association, Code, DjangoStorage
ImportError: No module named 'social_django'

要通过 python 社交身份验证使用 Django,您还需要安装 Django 应用程序。

您可以在安装时指定要安装 Django 的额外要求 python-social-auth:

pip install python-social-auth[django]

或者,在这种情况下,您可以单独安装缺少的包:

pip install social-auth-app-django

安装时使用 pip install python-social-auth[django] 而不是 pip install python-social-auth


我有 首先完成安装 pip install python-social-auth

运行

错误: 没有名为 'social_django'

的模块

然后我安装

pip install python-social-auth[django]

运行

要执行的操作: 应用所有迁移:admin、auth、contenttypes、music、session,social_django 运行宁迁移: 应用 social_django.0001_initial... 确定 正在应用 social_django.0002_add_related_name... 确定 应用 social_django.0003_alter_email_max_length... 确定 正在应用 social_django.0004_auto_20160423_0400... 确定 正在应用 social_django.0005_auto_20160727_2333... 确定 正在应用 social_django.0006_partial... OK


运行宁迁移:

额外支持

从 python-social-auth 迁移到 split social

enter link description here

也许你应该使用 pip 3:

pip3 install social-auth-app-django

如果你像我一样使用pipenv,别忘了输入shell然后安装(我忘记输入了,导致了类似的错误):

pipenv shell
pipenv install python-social-auth-app-django

然后添加 social_django 以安装应用程序

我知道这不是最初的问题,但希望它能有所帮助。