Hi GlamorousDog61 ,
Can you update clearml
( pip install -U clearml
) to the latest version?
Are you using add_function_step
to add steps to the pipeline controller? if so, did you specify the packages with the packages parameter?
Hi folks!
I am creating a pipeline using decorators. The first step of the pipeline is downloading and processing the dataset.
Inside the step function, there is a clearml import: from clearml import Dataset.
However, for some reason in the created environment inside the docker container clearml is missing.
In the INSTALLED PACKAGES stage description, I observe two sections - Original PIP and PIP.
In the Original PIP section, the clearml dependency is presented:
Original PIP:
Python 3.11.9 | packaged by conda-forge | (main, Apr 19 2024, 18:36:13) [GCC 12.3.0]
boto3 == 1.33.13
clearml == 1.15.1
And there is no clearml in the PIP clearml section and when I run the stage I get an error ModuleNotFoundError: No module named 'clearml'.
It seems that the dependencies from Original PIP and PIP are not merged, but only the PIP section is used, which for some reason does not contain the clearml dependency.
I've already tried these settings:
Could you please suggest what I can try to solve the issue?
Hi GlamorousDog61 ,
Can you update clearml
( pip install -U clearml
) to the latest version?
Are you using add_function_step
to add steps to the pipeline controller? if so, did you specify the packages with the packages parameter?