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 代码中的错误
基础教程推荐
- 如何在Python中绘制多元函数? 2022-01-01
- 哪些 Python 包提供独立的事件系统? 2022-01-01
- 将 YAML 文件转换为 python dict 2022-01-01
- 如何在 Python 中检测文件是否为二进制(非文本)文 2022-01-01
- 使用 Google App Engine (Python) 将文件上传到 Google Cloud Storage 2022-01-01
- Python 的 List 是如何实现的? 2022-01-01
- 使 Python 脚本在 Windows 上运行而不指定“.py";延期 2022-01-01
- 合并具有多索引的两个数据帧 2022-01-01
- 使用Python匹配Stata加权xtil命令的确定方法? 2022-01-01
- 症状类型错误:无法确定关系的真值 2022-01-01