python django - 模块导入错误

时间:2012-06-17 18:35:16

标签: django module importerror pythonpath

我有一个django项目和一个应用程序。从我的应用程序的urls.py文件,我试图调用库中的方法。它看起来像这样。

url(r'^hello_world/$', 'django_blah.views.say', {'text': 'Hello, world!'}),

库位于python路径中。 django_blah位于我项目的INSTALLED_APPS中。但是当我从浏览器调用上面的URL时,我收到导入模块错误。

Request Method: GET
Request URL:    http://myserver.com/project/hello_world/
Django Version: 1.4
Exception Type: ImportError
Exception Value:    
No module named django_blah
Exception Location: /Library/Python/2.6/site-packages/django/utils/importlib.py in import_module, line 35
Python Executable:  /usr/bin/python

我没有使用apache,目前正在使用Django提供的内置Web服务器。

我不确定这里发生了什么。有人能告诉我我做错了什么吗?

0 个答案:

没有答案