DJANGO:没有名为 social_auth.backends.contrib.github 的模块

DJANGO: No module named social_auth.backends.contrib.github

当我尝试使用 github 身份验证后端

登录时出现此错误
No module named social_auth.backends.contrib.github

settings.py

AUTHENTICATION_BACKENDS = (
    'social_auth.backends.contrib.github.GithubBackend',
    'django.contrib.auth.backends.ModelBackend',
)

应该是

AUTHENTICATION_BACKENDS = (
    'django.contrib.auth.backends.ModelBackend',
    'social.backends.github.GithubOAuth2',
)

对于python-social-auth