我的环境中安装了本地 python 包。我可以毫无问题地使用该包并且代码可以运行。不幸的是,VS Code 无法识别 python 包。我已经选择了正确的口译员。我认为我的 launch.json 文件有问题。json 文件当前如下所示:
{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ ], "python.useIsolation": false, "python.defaultInterpreterPath": "/venv/Scripts/python", }
我将感谢您的帮助!谢谢!
我实现了一个 json 文件并指定了 odhdefinitions 包的位置:
{ "python.pythonPath": "venv/Scripts/python", "python.analysis.extraPaths": [ "C:/some_folders/ODH/odhdefinitions" ] }
这是settings.json。这解决了这个问题。