本文介绍了没有名为backends.default.urls的模块的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
所以我通过easy_install安装了django注册。我正在跟踪一个快速入门指南,我正在尝试设置我的urlConf,但是它没有找到名为backends.defauls.urls的模块。可能是什么问题?
So I've installed django-registration through easy_install. I'm following a quick start guide and I'm trying to setup my urlConf, however it says module named backends.defauls.urls is not found. What might be the problem ?
import registration
(r'^accounts/', include('registration.backends.default.urls')),
推荐答案
您的 PYTHONPATH
中的模块?
这篇关于没有名为backends.default.urls的模块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!