이 질문에 언급 된 유사한 문제가 있습니다. No module named backends.default.urls 그러나 간단한 백엔드를 사용하려고 시도하고 있습니다. 따라서 include('registration.backends.simple.urls')
을 수행하면 문제가 해결되지 않습니다. 나를.backends.simple.urls라는 모듈이 없습니다.
누군가 내가 어떻게 간단한 백엔드로 장고 등록 작업을 할 수 있는지 알고 있습니까?
이 질문에 언급 된 유사한 문제가 있습니다. No module named backends.default.urls 그러나 간단한 백엔드를 사용하려고 시도하고 있습니다. 따라서 include('registration.backends.simple.urls')
을 수행하면 문제가 해결되지 않습니다. 나를.backends.simple.urls라는 모듈이 없습니다.
누군가 내가 어떻게 간단한 백엔드로 장고 등록 작업을 할 수 있는지 알고 있습니까?
내가 답을 알아 낸 : 내가 대신 최신 버전을 사용하는 내 requirements.txt 파일 에 django-registration==0.7
를 통해 장고 등록을 설치 장고를 등록 (0.8)에 바로 그 라인을 대체하여 내 요구 사항은 hg+https://bitbucket.org/ubernostrum/django-registration
입니다.
또는 pip install hg+https://bitbucket.org/ubernostrum/django-registration
이 작동합니다 : 그것은 the actual urls module과 일치
include('registration.backends.simple.urls')
. 작동하지 않으면 bitbucket 버전으로 업그레이드하십시오.