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
Is There A Way To Debug Docker-Based Clearml-Agent, How It Reaches This Error Message? Where Is The Code Executed, Can I Add Some Debug Prints To See Variable Values, Frame Stack Trace, Etc?

Is there a way to debug docker-based clearml-agent, how it reaches this error message? Where is the code executed, can I add some debug prints to see variable values, frame stack trace, etc?

Python executable with version '3.8' requested by the Task, not found in path, using '/usr/bin/python3' (v3.10.12) instead

As far as I understand, the code is executed inside docker container, and the agent inside it is installed from pip repository. Basically, debug print is impossible.

  
  
Posted 2 months ago
Votes Newest

Answers 2


Hi @<1715900788393381888:profile|BitingSpider17> , you can run the agent in --debug mode and this should pass it over to the internal agent running the code

  
  
Posted 2 months ago

Thank you!

  
  
Posted 2 months ago
293 Views
2 Answers
2 months ago
2 months ago
Tags