Debugging PySide with Qt Creator (Linux)#

As opposed to VSCode, presently Qt Creator does not support mixed mode debugging. However, we can debug the C++ implementation of the corresponding Python PySide code. Unlike VSCode, Qt Creator provides a very easy interface to attach GDB to the Python interpreter. It saves you from doing all the extra configuration steps, that have to be done with VSCode.

Here are the steps:

  1. Set a breakpoint on the C++ code.

  2. Go to Projects -> Run -> Run Configuration -> Add. This is going to open a new window shown below.

    creation of custom executable
  3. Click on Custom Executable and Create a new configuration. Feed in the details like shown below.

    run configuration of custom executable
  4. Debug -> Start Debugging -> Start Debugging Without Deployment.

    start debugging without deployment

You will now hit you breakpoint and can start debugging your code.

breakpoint cpp