Hi Kedro users! Does anyone have experience with `...
# plugins-integrations
c
Hi Kedro users! Does anyone have experience with
kedro mlflow
? Which version of Kedro and Kedro mlflow should I install? I followed the installation guide here. But when I am trying to verify with
kedro mlflow -h
command, it gave me no such command error. Any tips would be appreciated. Thanks!
d
this feels like an environment or working directory issue
so you can do
pip freeze
to check everything is in the same environment
and you can check if you’re in a kedro project by ensuring there is a
pyproject.toml
file where you’re looking for
y
Hi @Caroline Lei (I am the author of the plugin), as @datajoely explained this is either an environment or working directory issue. To check what the problem is, can you check the follwoing things: •
pip install kedro-viz
, then
kedro viz
: if this does work (this is an official plugin), it is not an environment issue else the CLI would not load. If it does not, you will very likely have red messages with
VersionConflictwarnings
which prevents kedro to load the CLI, can you copy paste them here? • when you try
kedro -h
, do you see the
run
command ? If it does not, it means you are not at the root of a kedro project, so you should change your working directory with
cd your-kedro-directory