If you don't know how to debug Kedro project becau...
# resources
n
If you don't know how to debug Kedro project because it's not starting from
python xxx
. Please check these documentation for setup: There is not much magic here,
kedro run
is equivalent to
python -m kedro
, once you start with
python
you can just use your debugger in the normal way. VSCode: https://docs.kedro.org/en/stable/development/set_up_vscode.html Pycharm: https://docs.kedro.org/en/stable/development/set_up_pycharm.html#
🚀 2