noklam
04/22/2022, 2:43 PMsession in interactive mode (Jupyter/Ipython), the most common way to interact with kedro is via the CLI, kedro run which execute the pipeline. Under the hood, it will create all necessary components like session, context, catalog for you.
To start a new kedro project, you would do kedro new.
You can do kedro new --starter=spaceflights which will create a template project for you with more advance kedro features. Then you can run a pipeline via kedro run. The tutorial above will guide you step by step how to creating these project in practice.