1. Install pudb pip package..
$ pip install pudb
2. Add the following statement in python code.
import pudb; pudb.set_trace()
3. Or, Launch the debugger like below
$ python -m pudb my_script.py
1. Install pudb pip package..
$ pip install pudb
import pudb; pudb.set_trace()
$ python -m pudb my_script.py
How to Install CMake 3.30.8 on Ubuntu 22.04 CMake is a powerful open-source tool for managing the build process of software proje...