Skip to content

example using debugger

Antoni Ivanov edited this page Jul 26, 2021 · 6 revisions

Setup a debugger using VDK

Visual Studio Code

  1. Install VDK
  2. In VSCode go to debug (Ctrl+Shift+D) and go to options (launch.json)
  3. Add the following configuration
{
"name": "Python: VDK",
"type": "python",
"request": "launch",
"program": "",
"args": ["-m", "taurus.vdk.cli_entry", "run", "${workspaceFolder}"],
"console": "externalTerminal"

}
  1. Open workspace settings ($(pwd)/.vscode/settings.json)
  2. Add the following line:
"python.pythonPath": "/path_to_vdk_virtual_environment/.../bin/python"

6.Happy debugging 😄

IntelliJ

⚠️ IN PROGRESS (Not done yet)

Clone this wiki locally