Hello!
In my code I use a package that writes into wav files, named soundfile (import soundfile as sf).
On 'conda list' there are -
SoundFile 0.10.3.post1
pysoundfile 0.10.3.post1 pyhd3deb0d_0 conda-forge
libsndfile 1.0.31 h9c3ff4c_1 conda-forge
Agent is unable to recognize it by itself, so I tried to use Task.add_requirements for these options -
Task.add_requirements('soundfile')
#Task.add_requirements('pysoundfile') #, '0.10.3.post1')
#Task.add_requirements('libsndfile')
but they all fail with -
ERROR: Ignored the following versions that require a different python version: 1.11.0rc1 Requires-Python <3.13,>=3.9
ERROR: Could not find a version that satisfies the requirement libsndfile (from versions: none)
ERROR: No matching distribution found for libsndfile
Command 'source /home/rakefet/miniconda3/etc/profile.d/conda.sh && conda activate /home/rakefet/.clearml/venvs-builds/3.8 && pip install -r /tmp/cached-reqstjykeeqj.txt' returned non-zero exit status 1.
clearml_agent: ERROR: Could not install task requirements!
or -
Any suggestions?