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查找然后选择合适的版本。
如下图,