Hey hey, I can see that the question has been ask...
# help
n
Hey hey, I can see that the question has been asked before but not answered, so I will try my luck 🙏 I am trying to get debugging working in VSCode with Python, but it doesn't work with the example on the website. So I am wondering if there is something else I need to do?
t
does the vscode debugger support python?
n
yes. Here is my launch.json:
Copy code
{
    // 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",
            "type": "python",
            "request": "launch",
            "program": "${file}",
            "console": "integratedTerminal"
        }
    ]
}
and I have the python extension installed
j
@Nicklas Nyegaard so did you try changing the
launch.json
to work with SST?
n
Yes, but I am not sure how the file should look
j
@Frank have you seen people get Python in VS Code to work?
n
yeah sorry, I am not of more help. Just say if you need anything 🙏
f
hmm.. not that I recall.
I will keep an eye on it and put together an example if any has it set up https://github.com/serverless-stack/serverless-stack/issues/1377