Looking at the code here (https://github.com/kedro...
# beginners-need-help
d
Looking at the code here (https://github.com/kedro-org/kedro/blob/a839d6952a88414234d25d6df09422eaf2260011/kedro/framework/cli/project.py#L73) it looks like we just run the following command (
-q
puts it in less verbose mode), but the location is hard coded
pip-compile -q requirements.in
I think its easiest to not use the
kedro
command wrapper here and use
pip-compile
directly, if you really want to you can define your own
cli.py
and your local version of the command will take precedence.