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
How Does Clearml-Agent Install

How does clearml-agent install -e python package ?
I have a homemade python package which I just moved to pyproject.toml, that I am not familiar with so not sure if I did thing properly.
Installing that package locally with pip install -e . or pip install -e None all succeed
But the same package failed to install by the agent:

WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: 

Using user/pass credentials - replacing ssh url '
' with https url '
'
Replacing original pip vcs '
' with 'git+
'
Collecting livsdk
  Cloning 
:****@github.com/REDACTED.git (to revision 38f53f72f8b0b511737869e8897944b88f8f9bac) to /tmp/pip-install-1ut_ib1z/livsdk_f9a979d30a084ad996467dd334f6e52a
  Running command git clone --filter=blob:none --quiet '
:****@github.com/REDACTED.git' /tmp/pip-install-1ut_ib1z/livsdk_f9a979d30a084ad996467dd334f6e52a
  Running command git rev-parse -q --verify 'sha^38f53f72f8b0b511737869e8897944b88f8f9bac'
  Running command git fetch -q '
:****@github.com/REDACTED.git' 38f53f72f8b0b511737869e8897944b88f8f9bac
2025-02-20 16:53:43
  Resolved 
:****@github.com/REDACTED.git to commit 38f53f72f8b0b511737869e8897944b88f8f9bac
  Installing build dependencies: started
  Installing build dependencies: finished with status 'done'
  Getting requirements to build wheel: started
  Getting requirements to build wheel: finished with status 'done'
  Installing backend dependencies: started
  Installing backend dependencies: finished with status 'done'
  Preparing metadata (pyproject.toml): started
  Preparing metadata (pyproject.toml): finished with status 'done'
  WARNING: Generating metadata for package livsdk produced metadata for project name unknown. Fix your #egg=livsdk fragments.
Discarding git+
:****@github.com/REDACTED.git@38f53f72f8b0b511737869e8897944b88f8f9bac#egg=livsdk: Requested unknown from git+
:****@github.com/REDACTED.git@38f53f72f8b0b511737869e8897944b88f8f9bac#egg=livsdk has inconsistent name: filename has 'livsdk', but metadata has 'unknown'
ERROR: Could not find a version that satisfies the requirement livsdk (unavailable) (from versions: none)
ERROR: No matching distribution found for livsdk (unavailable)
RequirementsManager handler <clearml_agent.helper.package.external_req.ExternalRequirements object at 0x7556f5c82da0> raised exception: Failed installing GIT/HTTPs package 'git+
'
clearml_agent: ERROR: Could not install task requirements!
Failed installing GIT/HTTPs package 'git+
'
2025-02-20 16:53:43
Process failed, exit code 1

I would like to reproduce the error locally so I can debug but I don't know what is the exact command that clearml-agent use for install packages ?

In the task that fail, the Python Package contains:

-e 

My pyproject.toml looks like this:

[build-system]
requires = ["setuptools>=62.0"]
build-backend = "setuptools.build_meta"

[project]
name = "livsdk"
version = "10.6"
description = "REDACTED"
authors = [
    {name = "XXX", email = "yyy"},
]
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
    "Programming Language :: Python :: 3",
]
dynamic = ["dependencies"]


[tool.setuptools.packages.find]
where = ["."]
include = ["livsdk", "livsdk.*"]
exclude = ["livsdk.pytest","livsdk.pytest.*"]


[tool.setuptools.package-data]
"*" = ["*.patch"]

[tool.setuptools.dynamic]
dependencies = {file = ["requirements.minimum.txt"]}
  
  
Posted one month ago
Votes Newest

Answers 2


I found that if pip is upgraded to latest version 25.0.1 then the package install fine.
The question become: why does the agent downgrade pip ?

Ignoring pip: markers 'python_version < "3.10"' don't match your environment
Collecting pip<22.3
  Downloading pip-22.2.2-py3-none-any.whl.metadata (4.2 kB)
Downloading pip-22.2.2-py3-none-any.whl (2.0 MB)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.0/2.0 MB 3.9 MB/s eta 0:00:00
Installing collected packages: pip
  Attempting uninstall: pip
    Found existing installation: pip 25.0.1
    Uninstalling pip-25.0.1:
      Successfully uninstalled pip-25.0.1
Successfully installed pip-22.2.2
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: 
. Use the --root-user-action option if you know what you are doing and want to suppress this warning.
Collecting Cython
  Downloading Cython-3.0.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB)
2025-02-21 15:40:26
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.6/3.6 MB 2.3 MB/s eta 0:00:00
Installing collected packages: Cython
Successfully installed Cython-3.0.12

SuccessfulKoala55 CostlyOstrich36

  
  
Posted one month ago

Actually, I can set agent.package_manager.pip_version="" in the clearml.conf
And after reading 4x the doc, I can use the env var:
CLEARML_AGENT__AGENT__PACKAGE_MANAGER__PIP_VERSION

  
  
Posted one month ago