web-dev-qa-db-fra.com

python-social-auth avec Django: ImportError: Aucun module nommé 'social_Django'

TOUS les packages installés !! Salut, j'utilise python 3.5 Django == 1.10 J'ai installé Python-social-auth exécuté la commande Python erreur de transfert manage.py reçue!

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'

Pour utiliser Django avec python auth social, vous devez également installer l'application Django).

Vous pouvez spécifier que vous souhaitez installer les exigences supplémentaires pour Django lorsque vous installez python-social-auth:

pip install python-social-auth[Django]

Ou, dans ce cas, vous pouvez installer le package manquant individuellement:

pip install social-auth-app-Django
30
Alasdair

Vous devriez probablement utiliser le pip 3:

pip3 install social-auth-app-Django
2
user7275377

UTILISATION pip install python-social-auth[Django] au lieu de pip install python-social-auth lors de l'installation


j'ai d'abord fait l'installation pip install python-social-auth

Courir

erreur : aucun module nommé 'social_Django'

Ensuite, j'installe

pip install python-social-auth[Django]

[~ # ~] exécutez [~ # ~]

Opérations à effectuer: Appliquer toutes les migrations: admin, auth, contenttypes, musique, sessions, social_Django Exécution des migrations: Application de social_Django.0001_initial ... OK Application de social_Django.0002_add_related_name ... OK Application de social_Django.0003_alter_email_max_length ... OK Application de social_Django201423 ... OK Application de social_Django.0005_auto_20160727_2333 ... OK Application de social_Django.0006_partial ... OK


Exécution de migrations:

Pour une assistance supplémentaire

Migration de python-social-auth vers split social

entrez la description du lien ici

1
Aditya kumar