VSCODE调试Python代码无法访问本地SitePackages



我正在尝试调试我的python代码,但无法访问'sitepackages'方法VSCODE版本1.35.1Python 3.6.8

我知道我可以在启动.json文件中使用" JustMyCode"标志。我尝试了True/False设置。

{
      // 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": [        
       {
           "name": "Python: Current File",
           "subProcess": true,
           "type": "python",
           "request": "launch",
           "program": "${file}",
           "justMyCode": false,
           "console": "integratedTerminal"
       }
   ]

}

当我将值设置为true并尝试介入我得到的"无法加载源"的方法:源不可用的消息。将标志设置为false:我在pkgutil.py键错误

中得到了例外

好吧,这个笑话是我的,问题是因为我'uck offfect'''&"提出异常"的复选框设置为" Debug模块"设置为" ON"的"''',这似乎是解决方法,但它解决了我的问题

相关内容

  • 没有找到相关文章

最新更新