成功安装djangorestframework后如何解决“导入“rest_framework.views”未解决”错误

问题描述 投票:0回答:1
I have just installed the Djangorestframework in my Django project for the first time. Before installing all the required dependencies (djangorestframework being one of them), I created a virtual environment (venv) were my project can run. Also I have created a virtual server where my project runs using Vagrant (ubuntu/bionic64).

我安装了 Django 3.2.10、django-rest-framework 3.12.4 和 python 3.6.9

So after all this configurations when i try to import some classes from django-rest-framework and registered the "rest_framework" in INSTALLED_APPS in the settings.py, the imported commands are underlined using yellow lines. For example: 

从rest_framework.views import APIview,短语“rest_framework”带有黄色下划线,可能是什么问题?

我尝试了几种解决方案,但没有效果

  1. 我重新安装了 djangorestframe 工作包并尝试使用它
  2. 由于有时你的 IDE 会缓存一些数据,导致你的 Rest_framework 难以运行,所以我重新启动了我的 IDE(与代码)
  3. 我还重新启动了我的电脑,以防出现任何问题。
  4. 我更改了我的 python 解释器以包含具有虚拟环境的解释器,但仍然无法工作。
  5. 我尝试检查拼写错误并解决了,但问题仍然存在。
django django-rest-framework installation configuration
1个回答
0
投票

好的,这是您的 VSCode 项目的配置问题。这不是您的应用程序中的实际问题。

它很可能与为您的项目配置的“解释器”有关。您应该使用 venv 中的 Python 实例。

© www.soinside.com 2019 - 2024. All rights reserved.