我安装了 allauth,但是当我运行 manage.py syncdb 时出现以下错误
django.core.exceptions.ImproperlyConfigured: ImportError allauth.twitter: No module named twitter
有什么想法可以解决这个问题吗?提前致谢。
我安装了 allauth,但是当我运行 manage.py syncdb 时出现以下错误
django.core.exceptions.ImproperlyConfigured: ImportError allauth.twitter: No module named twitter
有什么想法可以解决这个问题吗?提前致谢。
我认为正确的路径应该是:allauth.socialaccount.providers.twitter
快速浏览github中的代码
这是您需要传递的路径INSTALLED_APPS
以防万一
INSTALLED_APPS = (
...,
'allauth.socialaccount.providers.twitter',
...
)
或者像你import
这样:
import allauth.socialaccount.providers.twitter
希望这可以帮助!