https://kedro.org/ logo
Title
d

datajoely

07/27/2021, 10:47 AM
The other option is to start a regular Jupyter session and just do the set up piece yourself
from pathlib import Path
from kedro.framework.session import KedroSession
from kedro.framework.session.session import _activate_session

current_dir = Path.cwd()  # this points to 'notebooks/' folder
project_path = current_dir.parent  # point back to the root of the project
session = KedroSession.create("<your-kedro-project-package-name>", project_path)
_activate_session(session)
context = session.load_context()