Skip to content

Instantly share code, notes, and snippets.

@krsnewwave
Last active October 25, 2022 16:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save krsnewwave/5ea20382441c4e92fb7ac0e2561b1cc2 to your computer and use it in GitHub Desktop.
Save krsnewwave/5ea20382441c4e92fb7ac0e2561b1cc2 to your computer and use it in GitHub Desktop.
start kedro
# (1) virtual environment
conda activate kedro-env
pip install kedro kedro-mlflow optuna kedro-viz
# (2) new project with starter
# put anything, for me, I wrote 'tutorial'
kedro new --starter=pandas-iris
cd tutorial
# (3) fire up git. The starter already has a gitignore file and
# gitkeeps so you can git add things safely after.
git init
# (4) install dependencies. See requirements.in to add more.
pip install -r src/requirements.txt
# (5) run the pipeline. You can also do kedro run --pipeline=[name]
kedro run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment