VScode 黄色波浪线,Import “[module]“ could not be resolvedPylance

文章目录

问题描述:

大致的错误截图:
VScode 黄色波浪线,Import “[module]“ could not be resolvedPylance
第三方包/自己的代码库,导入不成功,显示黄色波浪线,代码自动提示功能受限。


解决方案:

可按照下面顺序进行修改,一般前两步就可以解决问题。若三种方法均不行,可参考pylance 代码库的issue 进行修改。

1. 修改vscode的python环境

在最下方,点击python版本的地方,切换为安装有这些黄色标线的第三方库的python环境。
(一般第三方库问题就可解决了)
VScode 黄色波浪线,Import “[module]“ could not be resolvedPylance

2. 修改 .vscode/seteing.json 文件

使用VScode全局搜索(win +P),即可定位到这个文件。

  • 添加 "python.analysis.useImportHeuristic": true,
    一般这个即可解决问题。
  • 按相对路径,添加 "python.analysis.extraPaths":
    按照与 .vscode/seteing.json 文件相对于你的项目root路径,进行填写,例如:
"python.analysis.extraPaths": [
	"./relative/your/code/path1",
	"./relative/your/code/path2" 
],

参考资料:
#68 (comment)【解决方案】
Import “[module]” could not be resolvedPylance

上一篇:OSError: Could not open VISA library:


下一篇:记录一次Matlab环境报错:The MATLAB Runtime instance could not be initialized