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
I Need Some Help With Setting Up Clearml Agent On Kubernetes. I'Ve Got It Running, And Taking Jobs From A Queue. However, During The Preparation For The Job, When It'S Installing Cython And Pip, It Decides To

I need some help with setting up ClearML agent on Kubernetes. I've got it running, and taking jobs from a queue. However, during the preparation for the job, when it's installing Cython and pip, it decides to downgrade pip from 24.1 to 22.2.2. That's a problem for me because some setup later files with old pip. There is also some mention of "python version < 3.10", but actually I'm using Python 3.10. Any ideas why this is happening? Logs in thread:

  
  
Posted one month ago
Votes Newest

Answers 2


working_dir = .
created virtual environment CPython3.10.12.final.0-64 in 707ms
  creator CPython3Posix(dest=/root/.clearml/venvs-builds/3.10, clear=False, no_vcs_ignore=False, global=True)
  seeder FromAppData(download=False, pip=bundle, setuptools=bundle, wheel=bundle, via=copy, app_data_dir=/root/.local/share/virtualenv)
    added seed packages: pip==24.1, setuptools==70.1.0, wheel==0.43.0
  activators BashActivator,CShellActivator,FishActivator,NushellActivator,PowerShellActivator,PythonActivator
...
Applying uncommitted changes
2024-07-13 23:23:35
Ignoring pip: markers 'python_version < "3.10"' don't match your environment     <====== THIS ???
Collecting pip<22.3
  Downloading pip-22.2.2-py3-none-any.whl.metadata (4.2 kB)
Installing collected packages: pip
  Attempting uninstall: pip
    Found existing installation: pip 24.1
    Uninstalling pip-24.1:            <====== THIS !!!
      Successfully uninstalled pip-24.1
Successfully installed pip-22.2.2
2024-07-13 23:23:41
Collecting Cython
  Downloading Cython-3.0.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB)
Installing collected packages: Cython
Successfully installed Cython-3.0.10
  
  
Posted one month ago

Found the answer, added this to my clearml.conf

package_manager: {
        pip_version: "24.1"
      }

but surprising default to pin to 22!

  
  
Posted one month ago
234 Views
2 Answers
one month ago
one month ago
Tags