I have an existing project, cloned with git clone
.
After I pip install kedro
I can run kedro info
fine but I dont seem to have access to the projects CLI for example if I try to runkedro install
I get the following error:
Usage: kedro [OPTIONS] COMMAND [ARGS]...
Try 'kedro -h' for help.
Error: No such command 'install'.
Any clues on what to do for existing projects are much appreciated.
Not sure if this matters but I am working inside a conda environment which is inside a docker container.
Project CLIs are available if you run kedro
at your Kedro project directory.
Run kedro new
to create a Kedro project
cd <your-kedro-project>
kedro
at the project directory
And you should see the project level CLIs
Also for your existing project, check if you have kedro_cli.py
at your project directory.