Thanks for your responses today. I am trying to u...
# beginners-need-help
s
Thanks for your responses today. I am trying to use modular pipeline as explained in https://kedro.readthedocs.io/en/stable/06_nodes_and_pipelines/03_modular_pipelines.html
Copy code
cook_breakfast_pipeline = pipeline(
    cook_pipeline,  parameters={"params:recipe": "params:breakfastrecipe"})
cook_lunch_pipeline = pipeline(
    cook_pipeline,  parameters={"params:recipe": "params:lunchrecipe"})
Now i want to run the cook_pipeline from command line with two differetnt parameters. The parameters is a long json with many key value pairs. I try the --config option but it wasnt working
d
Hi @User what error are you getting it's a bit difficult to work out from this
I'm currently working on a new training project that has lots of modular pipeline stuff (although no CLI overrides). Perhaps browsing this is useful https://github.com/datajoely/modular-spaceflights