安装了所有套餐!! 嗨,我正在使用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'
答案 0 :(得分:30)
要将Django与python social auth一起使用,您还需要安装Django应用程序。
您可以在安装python-social-auth
时指定要安装Django的额外要求:
pip install python-social-auth[django]
或者,在这种情况下,您可以单独安装缺少的包:
pip install social-auth-app-django
答案 1 :(得分:2)
可能你应该使用点3:
pip3 install social-auth-app-django
答案 2 :(得分:1)
USE 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,sessions,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 ...确定
正在运行迁移:
获得额外支持
从python-social-auth迁移到拆分社交
答案 3 :(得分:0)
如果你像我一样使用 pipenv 别忘了进入 shell 然后安装(我忘记这样做了,它导致了类似的错误):
pipenv shell
pipenv install python-social-auth-app-django
然后添加social_django来安装应用
我知道这不是最初的问题,但希望它有所帮助。