在项目中导入tastypie
我正在学习如何使用 tastypie
,并且我通过命令 sudo pip install django-tastypie
安装了它。
我想试一下:
from tastypie.resources import ModelResource
from tastypie.resources import ALL
from models import Article
但是我得到了:
Traceback:
File "/Users/username/Development/django_tutorial/lib/python2.7/site-packages/Django-1.6.2-py2.7.egg/django/core/handlers/base.py" in get_response
101. resolver_match = resolver.resolve(request.path_info)
File "/Users/username/Development/django_tutorial/lib/python2.7/site-packages/Django-1.6.2-py2.7.egg/django/core/urlresolvers.py" in resolve
318. for pattern in self.url_patterns:
File "/Users/username/Development/django_tutorial/lib/python2.7/site-packages/Django-1.6.2-py2.7.egg/django/core/urlresolvers.py" in url_patterns
346. patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
File "/Users/username/Development/django_tutorial/lib/python2.7/site-packages/Django-1.6.2-py2.7.egg/django/core/urlresolvers.py" in urlconf_module
341. self._urlconf_module = import_module(self.urlconf_name)
File "/Users/username/Development/django_tutorial/lib/python2.7/site-packages/Django-1.6.2-py2.7.egg/django/utils/importlib.py" in import_module
40. __import__(name)
File "/Users/username/Development/django_tutorial/bin/django_test/django_test/urls.py" in <module>
14. (r'^articles/', include('article.urls')), # links to article/urls
File "/Users/username/Development/django_tutorial/lib/python2.7/site-packages/Django-1.6.2-py2.7.egg/django/conf/urls/__init__.py" in include
26. urlconf_module = import_module(urlconf_module)
File "/Users/username/Development/django_tutorial/lib/python2.7/site-packages/Django-1.6.2-py2.7.egg/django/utils/importlib.py" in import_module
40. __import__(name)
File "/Users/username/Development/django_tutorial/bin/django_test/article/urls.py" in <module>
4. from api import ArticleResource
File "/Users/username/Development/django_tutorial/bin/django_test/article/api.py" in <module>
1. from tastypie.resources import ModelResource
Exception Type: ImportError at /articles/api/article/
Exception Value: No module named tastypie.resources
1 个回答
1
你可能忘记了两件事:
1) 在你的 setting.py
文件中,把 tastypie
加入到已安装的应用列表里。
INSTALLED_APPS = (
.....
'tastypie',
)
或者
2) 你可能在 env
环境之外安装了 tastypie
。