我已经使用VS Code几年了,我发现它是一个非常好的IDE。我用Python编程比任何其他语言更多。
我真的很困扰我没有使用IDE的调试器(即使它是一个功能)。
按下调试播放按钮时出错:
Failed to launch the Python Process, please validate the path 'export PATH=$PATH:/Library/Frameworks/Python.framework/Versions/2.7/bin/python'
我的launch.json
"configurations": [
{
"name": "Python",
"type": "python",
"request": "launch",
"stopOnEntry": true,
"pythonPath": "${config:python.pythonPath}",
"program": "${file}",
"cwd": "/workspace/h5-automation/",
"env": {},
"envFile": "${workspaceRoot}/.env",
"debugOptions": [
"WaitOnAbnormalExit",
"WaitOnNormalExit",
"RedirectOutput"
]
}
有任何想法/建议吗?
答案 0 :(得分:0)
如果您使用的是* nix系统,请启动终端并键入which python
以获取Python路径,将其复制并将其粘贴为launch {j}文件中的pythonPath
值。< / p>