本文主要介绍Visual Studio(VS) Code中,编写Python代码报错Pylint “unresolved import”的解决方法。

1、通过设置Python的路径解决

1)Windows/Linux

依次点击菜单中,File > Preferences > Settings中点击Settings Editor

2)macOS 

依次点击菜单中,Code > Preferences > Settings中点击Settings Editor

设置下面配置:

{
    "python.pythonPath": "/path/to/your/venv/bin/python",
}

相关文档https://code.visualstudio.com/docs/getstarted/settings#_settings-file-locations

2、通过设置"python.autoComplete.extraPaths"解决

添加修改.vscode/settings.json配置如下,

"python.autoComplete.extraPaths": ["./path-to-your-code"],

3、通过快捷键设置Python解决

Command/Ctrl + Shift + P快捷键,然后输入Python查找然后选择合适的版本。

 如下图,

Python

推荐文档