Pylint“未解决的导入"Visual Studio 代码中的错误 [英] Pylint "unresolved import" error in Visual Studio Code

查看:40
本文介绍了Pylint“未解决的导入"Visual Studio 代码中的错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用以下设置

  • macOS v10.14(莫哈韦沙漠)
  • Python 3.7.1
  • Visual Studio 代码 1.30
  • Pylint 2.2.2
  • Django 2.1.4

我想使用 linting 让我在 Visual Studio Code 中的生活更轻松.但是,对于每次导入,我都声明了未解决的导入".即使是默认的 Django 导入(即从 django.db 导入模型).

I want to use linting to make my life a bit easier in Visual Studio Code. However, for every import I have states "unresolved import". Even on default Django imports (i.e. from django.db import models).

我认为是因为它没有看到虚拟环境 Python 文件.

I presume it is because it is not seeing the virtual environment Python files.

一切正常,但开始变得烦人.

Everything works just fine, but it's starting to get annoying.

我选择的解释器都是 Python 的系统版本.它似乎根本没有看到我的虚拟环境 Python(它与我的工作区不在同一个目录中,所以这部分是有意义的).

The interpreter choices I have are all system versions of Python. It does not seem to see my virtual environment Python at all (it is not in the same directory as my workspace, so that part makes sense).

如果我在 settings.json 文件中设置了 python.PythonPath,它只会忽略它并且不会列出我的虚拟环境路径作为选项.我也尝试在我的全局 Python 设置中设置它,但它也没有显示.

If I set up the python.PythonPath in the settings.json file, it just ignores it and does not list my virtual environment path as an option. I also tried setting it up in my global Python settings, but it also does not show up.

是否有快速修复方法使其正常工作?

Is there a quick fix to get it working?

推荐答案

在你的 工作区设置,你可以像这样设置你的 Python 路径:

In your workspace settings, you can set your Python path like this:

{
    "python.defaultInterpreterPath": "/path/to/your/venv/bin/python",
}

这篇关于Pylint“未解决的导入"Visual Studio 代码中的错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆