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"]}