Create New Kedro Project
This is a quickstart to getting a new kedro [1]
pipeline up and running. After this article you should be able to understand
how to get started with kedro [1]. You can learn
more about this Hello World
Example [2]
in the
docs [2]
🧹 Install Kedro [1]
🛢 Create the Example Pipeline
💨 Run the example
📉 Show the pipeline visualization
Create a Virtual Environment [3] # [4]
I use conda to control my virtual environments and will create a new environment called kedro_iris with the following command. note the latest compatible version of python is 3.7.
EDIT: as of kedro 0.16.0 kedro supports up to 3.8
conda create -n kedro_iris python=3.8 -y
image [5]
Options
Activate your conda environment # [6]
I try to keep my base environment as clean as possible. I have ran into too many issues installing things in the base environment. Almost always its some dependency that starts causing issues making it even harder to realize where its coming from as I never even installed it in base.
s...