我安装了allauth,但是当我运行manage.py syncdb时,我收到以下错误
django.core.exceptions.ImproperlyConfigured: ImportError allauth.twitter: No module named twitter
有什么想法来解决这个问题? 提前谢谢。
答案 0 :(得分:1)
我认为正确的路径应该是:allauth.socialaccount.providers.twitter
快速查看code in github
这是您需要传递给INSTALLED_APPS
的路径
INSTALLED_APPS = (
...,
'allauth.socialaccount.providers.twitter',
...
)
或者在import
中这样:
import allauth.socialaccount.providers.twitter
希望这有帮助!