在VS Code中为launch.json设置Python路径

时间:2017-12-28 15:14:57

标签: python configuration visual-studio-code vscode-settings pythonpath

我已经使用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'

enter image description here

检查我的PYTHONPATH: enter image description here

我的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"
        ]
    }

有任何想法/建议吗?

1 个答案:

答案 0 :(得分:0)

如果您使用的是* nix系统,请启动终端并键入which python以获取Python路径,将其复制并将其粘贴为launch {j}文件中的pythonPath值。< / p>