我正在尝试调试python代码,但无法访问“ sitepackages”方法 vscode版本1.35.1 python 3.6.8
我知道我可以在launch.json文件中使用'justMyCode'标志。 我已经尝试过真/假设置。
{
// 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键错误中得到了一个例外
答案 0 :(得分:0)
开个玩笑,这是因为我在调试模块的breakpointssection中将“未捕获的异常”和“引发的异常”复选框设置为“ ON”,这似乎是一种解决方法,但它解决了我的问题问题