Python 引入requests模块后VsCode出现问题提示 “could not be resolved” 解决方案

问题描述

pylance 插件会提示一些语法错误或建议优化的问题,在使用 pip install 安装了新模块 import 引入后经常会在问题提示中出现 “Import "xxx模块" could not be resolved...”

这里以安装 requests 为例,代码中 import requests 在 VsCode 问题提示中出现 “Import “requests” could not be resolved” ,如图:

Python 引入requests模块后VsCode出现问题提示 “could not be resolved” 解决方案_第1张图片在这里插入图片描述
只出现问题提示,代码运行正常。分析原因可能是 VsCode 的 pylance 插件寻找依赖的路径问题


解决方案:

方法1:在当前项目的.vscode目录中,修改settings.json文件,增加以下
内容:

"python.analysis.extraPaths": [
	"./py_src"
	]

将./py_src换成你的寻找路径。

寻找路径可以在cmd命令行中使用where python指令找到python310的具体地址,再去python310文件夹下>lib>site-packages,找到requests
Python 引入requests模块后VsCode出现问题提示 “could not be resolved” 解决方案_第2张图片
Python 引入requests模块后VsCode出现问题提示 “could not be resolved” 解决方案_第3张图片

方法2:配置 pylance 插件额外的导入搜索解析路径: 1、在 VsCode 设置中搜索:python.analysis.extraPaths 2、设置路径(requests的安装路径)

Python 引入requests模块后VsCode出现问题提示 “could not be resolved” 解决方案_第4张图片
如果模块安装在虚拟环境,此处的路径选择虚拟环境的路径。配置路径后问题提示不再显示

参考:

链接: Python 引入模块后VsCode出现问题提示 “could not be resolved” 解决方案
链接: 关于python项目vscode 提示import could not be resolved的问题解决

你可能感兴趣的:(Python,vscode,python,ide)