Python 引入requests模块后VsCode出现问题提示 “could not be resolved” 解决方案
问题描述pylance 插件会提示一些语法错误或建议优化的问题,在使用 pip install 安装了新模块 import 引入后经常会在问题提示中出现 “Import "xxx模块" could not be resolved...”这里以安装 requests 为例,代码中 import PySimpleGUI as sg 在 VsCode 问题提示中出现 “Import “PySimpleG
问题描述
pylance 插件会提示一些语法错误或建议优化的问题,在使用 pip install 安装了新模块 import 引入后经常会在问题提示中出现 “Import "xxx模块" could not be resolved...”
这里以安装 requests 为例,代码中 import requests 在 VsCode 问题提示中出现 “Import “requests” could not be resolved” ,如图:
只出现问题提示,代码运行正常。分析原因可能是 VsCode 的 pylance 插件寻找依赖的路径问题
解决方案:
方法1:在当前项目的.vscode目录中,修改settings.json文件,增加以下
内容:
"python.analysis.extraPaths": [
"./py_src"
]
将./py_src换成你的寻找路径。
寻找路径可以在cmd命令行中使用where python指令找到python310的具体地址,再去python310文件夹下>lib>site-packages,找到requests
方法2:配置 pylance 插件额外的导入搜索解析路径: 1、在 VsCode 设置中搜索:python.analysis.extraPaths 2、设置路径(requests的安装路径)
如果模块安装在虚拟环境,此处的路径选择虚拟环境的路径。配置路径后问题提示不再显示
参考:
链接: Python 引入模块后VsCode出现问题提示 “could not be resolved” 解决方案
链接: 关于python项目vscode 提示import could not be resolved的问题解决
更多推荐
所有评论(0)