Hi everyone. I have a very basic question regardin...
# beginners-need-help
j
Hi everyone. I have a very basic question regarding the installation and starting a new Kedro project. Does
pip install kedro
needs to be executed for every new Kedro project within a dedicated Python virtual environment? In other words, for every new project, are the following steps correct to get started? 1 - Create a new Python virtual environment. For instance, with
conda
, with the command:
conda create --name <environment_name> python=3.7 -y
2 - Install Kedro (i.e. execute
pip install kedro
) 3 - Create a new Kedro project (e.g. without starter, with the command
kedro new
) I hope my question makes sense. Thank you in advance!
3 Views