Skip to content

example using debugger

Antoni Ivanov edited this page Aug 31, 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
{
    "configurations": [
        {
            "name": "Python: VDK",
            "type": "python",
            "request": "launch",
            "module": "taurus.vdk.cli_entry",
            "args": [
                "run",
                "${workspaceFolder}"
            ],
        }
    ]
}
  1. Select interpreter where vdk is installed :

IntelliJ

⚠️ IN PROGRESS (Not done yet)

Clone this wiki locally