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, I Have Installed Clearml-Agent In My Server And I Am Trying To Create A New Task From App.Clearml By Pulling A Repo From Github. Do I Need To Make Changes (Add The Clearml 2 Line Code) In The Entrypoint File In The Repo For The Task To Execute In Clea

Hi, I have installed clearml-agent in my server and I am trying to create a new task from app.clearml by pulling a repo from github. do i need to make changes (add the clearml 2 line code) in the entrypoint file in the repo for the task to execute in clearml dashboard. also i am trying to place the clearml-agent in a docker container and run it in docker mode. however it is showing python version error in the console while executing the task. do i need to make any changes in the clearml.conf file while using docker to run clearml-agents?

.......
.......
imageio==2.22.1
imageio-ffmpeg==0.4.7
moviepy==1.0.3
numpy==1.21.2
opencv-python==4.6.0.66
pandas==2.0.1
Pillow==9.2.0
pipenv==2021.5.29
platformdirs==2.3.0
proglog==0.1.10
python-dateutil==2.8.2
pytube==15.0.0
pytz==2023.3
requests==2.28.1
six==1.16.0
tqdm==4.64.1
tzdata==2023.3
urllib3==1.26.12
virtualenv==20.8.0
virtualenv-clone==0.5.7
clearml_agent: ERROR: Command '['/root/.clearml/venvs-builds/3.8/bin/python', '-m', 'pip', '--disable-pip-version-check', 'install', '-r', '/tmp/requirements_60cgy76k.txt']' returned non-zero exit status 1.
exit status 1
2025-03-05 11:27:42
Process failed, exit code 1
  
  
Posted one month ago
Votes Newest

Answers 6


create a new task from app.clearml by pulling a repo from github. do i need to make changes (add the clearml 2 line code) in the entrypoint file in the repo for the task to execute in clearml dashboard.

Can your re-explain/re-word this ? What exactly are you trying to do and what exactly did you do ??

i am trying to place the clearml-agent in a docker container and run it in docker mode.

If you are running the clearml-agent in docker, I don't think that is compatible with "docker mode". What do you mean by running in "docker mode" ? What command did you use to start the clearml-agent inside the container ?

  
  
Posted one month ago

From the log, I can see that if failed to install python package like dlib because it's missing CMake which is not avail in the native docker image nvidia/cuda:11.0.3-cudnn8-runtime-ubuntu20.04

  
  
Posted one month ago

You try to make your own docker image with CMake and even dlib inside manually
Then run clearml-agent inside your container, without docker mode.

  
  
Posted one month ago

ClearML staff may have better solution as I am not familiar with the docker mode

  
  
Posted one month ago

i ran this command to start clearml-agent in docker mode
clearml-agent daemon --queue default --docker

created a new task in clearml dashboard using the git details of the repository
image

  
  
Posted one month ago

What error do you have in the Console log tab, in the Web UI ?

  
  
Posted one month ago
160 Views
6 Answers
one month ago
one month ago
Tags
Similar posts