gpt4 book ai didi

python - Django Rest Framework 上的序列化程序导入错误

转载 作者:行者123 更新时间:2023-11-28 22:44:23 24 4
gpt4 key购买 nike

我正在尝试按照以下链接中的教程开始使用 Django REST Framework:<强> http://www.django-rest-framework.org/tutorial/quickstart/

但是,按照此处的说明,我在启动服务器后遇到如下错误:

Could not import 'rest_framework.renderers.JSONRenderer' for API setting 'DEFAULT_RENDERER_CLASSES'. ImportError: cannot import name serializers.

不知何故感觉像是一个兼容性问题,所以我查看了我的软件包版本并得出以下结论:

  • Django==1.7.7
  • djangorestframework==3.1.1
  • Python==2.7.6

我想知道是否有人对问题可能有任何想法。如果我没有提供足够的信息,我们深表歉意,很乐意提供更多信息,只是不确定此时到底什么是相关的。

谢谢!

-- 更新

谢谢 Kevin,添加了您在下面链接的命令的输出:

In [1]: from rest_framework.renderers import JSONRenderer
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
<ipython-input-1-92bc65a288f2> in <module>()
----> 1 from rest_framework.renderers import JSONRenderer

C:\Anaconda64\lib\site-packages\rest_framework\renderers.py in <module>()
18 from django.test.client import encode_multipart
19 from django.utils import six
---> 20 from rest_framework import exceptions, serializers, status, VERSION
21 from rest_framework.compat import SHORT_SEPARATORS, LONG_SEPARATORS, INDENT_SEPARATORS
22 from rest_framework.exceptions import ParseError

C:\Anaconda64\lib\site-packages\rest_framework\serializers.py in <module>()
40 # serializer fields more explicit.
41
---> 42 from rest_framework.relations import * # NOQA
43 from rest_framework.fields import * # NOQA
44

C:\Anaconda64\lib\site-packages\rest_framework\relations.py in <module>()
9 from django.utils.translation import ugettext_lazy as _
10 from rest_framework.compat import OrderedDict
---> 11 from rest_framework.fields import get_attribute, empty, Field
12 from rest_framework.reverse import reverse
13 from rest_framework.utils import html

C:\Anaconda64\lib\site-packages\rest_framework\fields.py in <module>()
----> 1 from rest_framework import serializers
2
3 from .models import User, Post, Photo
4
5

ImportError: cannot import name serializers

In [2]:

最佳答案

我有同样的问题,对我来说升级django rest解决了这个问题!我用了这个命令

pip install djangorestframework --upgrade

关于python - Django Rest Framework 上的序列化程序导入错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29572071/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com