caesarnine / data-science-docker-vscode-template

163 stars 35 forks source link

Debug Mode #6

Open luistelmocosta opened 5 years ago

luistelmocosta commented 5 years ago

Is it possible to use the debugger?

Every time I try to run it, I get the error "Configured debug type 'python' is not supported."

my launch.json:

{
    // 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": "attach",
            "program": "${file}",
            "console": "integratedTerminal",
            "port": 8443
        }
    ]
}