{ "version": "0.2.0", "configurations": [ { "name": "Python: Attach", "type": "python", "request": "attach", "port": 5678, // or the port used by your Jupyter server "justMyCode": false }, { "name": "Python: Aktuální soubor", "type": "python", "request": "launch", "program": "${file}", "cwd": "${workspaceFolder}", "env": { "PYTHONPATH": "${workspaceFolder}:${workspaceFolder}/bld" }, "console": "integratedTerminal", "justMyCode": false, "python": "${command:python.interpreterPath}", "internalConsoleOptions": "openOnSessionStart" }, { "name": "Python: Main", "type": "python", "request": "launch", "program": "v2realbot/main.py", "justMyCode": false }, { "name": "Python: File", "type": "python", "request": "launch", "program": "${file}", "justMyCode": false }, { "name": "Python: Attach", "type": "python", "request": "attach", "connect": { "host": "localhost", "port": 5678 } } ] }