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, How Does The Agent Determine Which Packages To Install? I Have

Hi,
How does the agent determine which packages to install? I have google-cloud-bigquery in my requirements.txt, but when I run my pipeline on the agent (I install agent by helm on my k8s), it error on ModuleNotFoundError: No module named 'google' . I remove everything except google-cloud-bigquery in my requirements.txt, but the list of INSTALLED PACKAGES does not change.
Thanks

  
  
Posted one year ago
Votes Newest

Answers 5


By default, the agent will use the packages detected when you ran your code locally (which is stored in the installed packages section). You can force the agent to use only the requirements.txt file from the repository

  
  
Posted one year ago

SuccessfulKoala55 Thanks Jake. Is t hat an option on the helm values or I set in the pipeline decorator?

  
  
Posted one year ago

and I installed the google package locally, so it's weird that it didnt detect it

  
  
Posted one year ago

The setting is in the agent clearml.conf file

  
  
Posted one year ago

If you installed it and did not import it (or did not use it even though you imported it) it will probably not be detected

  
  
Posted one year ago
597 Views
5 Answers
one year ago
one year ago
Tags
Similar posts