Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Hi, Having Issue With Clearml Agent Not Installing Package Installed Directly From Github Using “Git+

HI,
Having issue with clearml agent not installing package installed directly from github using “git+ https://github.com/ …”
How the agent know which packages it should install in order to run task/pipeline?

  
  
Posted one year ago
Votes Newest

Answers 10


Hello Ofir,

in general matter, the agent parses the script and finds all the imports, through an intelligent analysis (it installs the ones you use/need).
It then build an env where it will install them and run (docker, venv/pip.etc).
You can also force a package/ package version

For the pipelines (and the different ways to implement them), it is a bit different

In order to answer you precisely, we would need to have a bit more detais about what you need to achieve :
Is it a pipeline that is being executed ? Is the issue with one of the steps of the pipeline? How is this step created ? (i.e. existing Task of function decorator)

  
  
Posted one year ago

Thanks David,
Yes, I have the issue in pipelines and I use the decorators method for the pipelines.
The pipeline include scripts from several files.
If I put the import in the pipeline main file it works, but if the import is in another file (which is imported by the pipeline main file) it does not work.
The import is needed in one of the tasks (which is also on a different file) - I tried put ting the import on the top of the task file and also inside the task method but it didn’t work.
Also tried to add the package in the task’s decorator params and it didn’t help.

  
  
Posted one year ago

hey Ofir
did you tried to put the repo in the decorator where you need the import ?
if you can send me some code to illustrate what you are doing, it could help me to reproduce the issue

  
  
Posted one year ago

I do not remember exactly all the steps we did, but with the help of clearml team we found solution by adding:
Task.add_requirements((…)outside the pipeline code

  
  
Posted one year ago

Hi

  
  
Posted one year ago

Ok. We'll try to reproduce this. If you can send a snippet/example that could help. Anyway we'll keep you updated

  
  
Posted one year ago

Hey Ofir
We would need to know a bit more about the issue. Especially on what you try to import. Is it a file that is on your repo or does the issue occurs when you try to import a standard pypi package ?

  
  
Posted one year ago

I try to install package from our github

  
  
Posted one year ago

great to hear that the issue is solved. btw sorry for the time it took me to come back to you

  
  
Posted one year ago

no problem, you and your team are very responsive and help us a lot.

  
  
Posted one year ago