python manage.py runserver - 错误:没有名为registration的模块

时间:2013-08-31 04:36:17

标签: python django

我正在尝试运行python manage.py runserver来启动开发服务器,我收到以下错误:

Error: no module named registration

在我的common.py文件中,我安装了“注册”应用程序。

INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
'django.contrib.admin',
'rosetta',
# Uncomment the next line to enable admin documentation:
# 'django.contrib.admindocs',
'templatetag_handlebars',
'registration',
'appName.common',
'appName.users',
'appName.core',

我认为这可能是罪魁祸首,但无法确定。

谁能告诉我我做了什么以及如何解决它?

感谢。

2 个答案:

答案 0 :(得分:2)

打开python shell并执行此操作:

import sys

sys.path.append('/your_registration_package_path')

答案 1 :(得分:0)

您可能忘记将registration包添加到python sys path

import sys
sys.path.append('/your_path')