Pylint“未解决的导入";Visual Studio 代码中的错误

2024-04-21Python开发问题
1

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

问题描述

我正在使用以下设置

  • macOS v10.14 (Mojave)
  • 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 代码中的错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

在xarray中按单个维度的多个坐标分组
groupby multiple coords along a single dimension in xarray(在xarray中按单个维度的多个坐标分组)...
2024-08-22 Python开发问题
15

Pandas中的GROUP BY AND SUM不丢失列
Group by and Sum in Pandas without losing columns(Pandas中的GROUP BY AND SUM不丢失列)...
2024-08-22 Python开发问题
17

GROUP BY+新列+基于条件的前一行抓取值
Group by + New Column + Grab value former row based on conditionals(GROUP BY+新列+基于条件的前一行抓取值)...
2024-08-22 Python开发问题
18

PANDA中的Groupby算法和插值算法
Groupby and interpolate in Pandas(PANDA中的Groupby算法和插值算法)...
2024-08-22 Python开发问题
11

PANAS-基于列对行进行分组,并将NaN替换为非空值
Pandas - Group Rows based on a column and replace NaN with non-null values(PANAS-基于列对行进行分组,并将NaN替换为非空值)...
2024-08-22 Python开发问题
10

按10分钟间隔对 pandas 数据帧进行分组
Grouping pandas DataFrame by 10 minute intervals(按10分钟间隔对 pandas 数据帧进行分组)...
2024-08-22 Python开发问题
11