python – 没有名为registration.backends.default.urls的模块

前端之家收集整理的这篇文章主要介绍了python – 没有名为registration.backends.default.urls的模块前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

这个主题肯定与this topic有关,但根据批准的答案和相关评论,修复方法是将registration.backends.default.urls更改为registration.urls.当我尝试相同的错误是相同的,但使用registration.urls而不是registration.backends.default.urls.

P.Sjjango.contrib.auth被添加到INSTALLED_APPS中

Environment:



Request Method: GET
Request URL: http://127.0.0.1:8000/accounts/register/

Django Version: 1.4.2
Python Version: 2.7.3
Installed Applications:
('django.contrib.auth','django.contrib.contenttypes','django.contrib.sessions','django.contrib.sites','django.contrib.messages','django.contrib.staticfiles','oauth2app','django.contrib.admin','uni_form','server')
Installed Middleware:
('django.middleware.common.CommonMiddleware','django.contrib.sessions.middleware.SessionMiddleware','django.middleware.csrf.CsrfViewMiddleware','django.contrib.auth.middleware.AuthenticationMiddleware','django.contrib.messages.middleware.MessageMiddleware')


Traceback:
File "C:\Python27\lib\site-packages\django-1.4.2-py2.7.egg\django\core\handlers\base.py" in get_response
  101.                             request.path_info)
File "C:\Python27\lib\site-packages\django-1.4.2-py2.7.egg\django\core\urlresolvers.py" in resolve
  298.             for pattern in self.url_patterns:
File "C:\Python27\lib\site-packages\django-1.4.2-py2.7.egg\django\core\urlresolvers.py" in url_patterns
  328.         patterns = getattr(self.URLconf_module,"urlpatterns",self.URLconf_module)
File "C:\Python27\lib\site-packages\django-1.4.2-py2.7.egg\django\core\urlresolvers.py" in URLconf_module
  323.             self._URLconf_module = import_module(self.URLconf_name)
File "C:\Python27\lib\site-packages\django-1.4.2-py2.7.egg\django\utils\importlib.py" in import_module
  35.     __import__(name)
File "C:\Users\Roel\workspace\ts-server\tsserver\tsserver\urls.py" in URLconf_module = import_module(URLconf_module)
File "C:\Python27\lib\site-packages\django-1.4.2-py2.7.egg\django\utils\importlib.py" in import_module
  35.     __import__(name)

Exception Type: ImportError at /accounts/register/
Exception Value: No module named registration.backends.default.urls
最佳答案
我必须先安装django-registration(似乎只是逻辑:-s)

pip install django-registration

原文链接:https://www.f2er.com/python/439409.html

猜你在找的Python相关文章