Why doesn't Kedro session internally bootstrap its...
# questions
g
Why doesn't Kedro session internally bootstrap itself when being called outside of jupyter or kedro run? https://docs.kedro.org/en/stable/api/framework/kedro.framework.session/#kedro.framework.session.session.KedroSession
j
Hey, KedroSession doesn’t auto-bootstrap because bootstrapping the project is a separate global setup step.
kedro run
and Jupyter do this for you by calling
bootstrap_project
/
configure_project
before creating a session. If you create a session yourself, you must call
bootstrap_project
(or
configure_project
in packaged mode) first, then
KedroSession.create(...)
y
@galenseilis What would you like Kedro session to do?