Installation guide¶
Installing Kedro¶
We recommend installing Kedro in a new virtual environment for each of your projects.
To install Kedro from the Python Package Index (PyPI) simply run:
pip install kedro
It is also possible to install kedro
using conda
, a package and environment manager program bundled with Anaconda, using:
conda install -c conda-forge kedro
This installs the core Kedro module; which includes the CLI tool, project template, pipeline abstraction, framework and support for configuration.
Note: To install a development version of Kedro, follow these steps.