0
我试图在linux服务器上登录我的django社交授权网站,在google登录后显示错误(没有名为social.pipeline.social_auth的模块)。我怎样才能解决这个问题 ?没有名为social.pipeline.social_auth的模块
网址: - http://nam.woo.gy
我试图在linux服务器上登录我的django社交授权网站,在google登录后显示错误(没有名为social.pipeline.social_auth的模块)。我怎样才能解决这个问题 ?没有名为social.pipeline.social_auth的模块
网址: - http://nam.woo.gy
出现此错误是因为用来完成过程(对社会的帐户确认后重定向)管道。这只是由错误的进口引起的。请尝试在django shell中以几种不同的方式导入它(python manage.py shell
)。请检查您是否根据示例获得了正确的项目结构:https://github.com/omab/django-social-auth/tree/master/example
请包括有问题的代码和追溯 – alko