Pylint quot;unresolved importquot; error in Visual Studio Code(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 代码中的错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Pylint“未解决的导入";Visual Studio 代码中的错误


- padding='same' 转换为 PyTorch padding=# 2022-01-01
- 如何将一个类的函数分成多个文件? 2022-01-01
- python check_output 失败,退出状态为 1,但 Popen 适用于相同的命令 2022-01-01
- 如何在 python3 中将 OrderedDict 转换为常规字典 2022-01-01
- pytorch 中的自适应池是如何工作的? 2022-07-12
- python-m http.server 443--使用SSL? 2022-01-01
- 使用Heroku上托管的Selenium登录Instagram时,找不到元素';用户名'; 2022-01-01
- 分析异常:路径不存在:dbfs:/databricks/python/lib/python3.7/site-packages/sampleFolder/data; 2022-01-01
- 沿轴计算直方图 2022-01-01
- 如何在 Python 的元组列表中对每个元组中的第一个值求和? 2022-01-01