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 Here. Is It Possible To Run Clearml-Agent With Pre-Ready Pip Virtual Environment And Avoid Packages Installation From Requirments.Txt/Installed Packages ?

Hi here. Is it possible to run clearml-agent with pre-ready pip virtual environment and avoid packages installation from requirments.txt/INSTALLED PACKAGES ?

  
  
Posted 2 years ago
Votes Newest

Answers 6


HelpfulHare30 try using CLEARML_AGENT_SKIP_PIP_VENV_INSTALL env var with the path you your python env:
CLEARML_AGENT_SKIP_PIP_VENV_INSTALL=/path/to/your/python

  
  
Posted 2 years ago

TimelyPenguin76 , thank you. I'll try now

  
  
Posted 2 years ago

TimelyPenguin76 , it worked. Thank you!

  
  
Posted 2 years ago

Hi HelpfulHare30 ,
Are you running the agent in the docker mode?

  
  
Posted 2 years ago

SuccessfulKoala55 , no

  
  
Posted 2 years ago

I'm asking because in the docker mode, the agent will create a venv which inherits from the system packages, so any package already installed in the docker image will not be reinstalled

  
  
Posted 2 years ago