-
Notifications
You must be signed in to change notification settings - Fork 48
Description
When running
uv pip install -r https://raw.githubusercontent.com/google-deepmind/limit/refs/heads/main/code/requirements.txt
then I get the following error:
couldn't find remote ref refs/tags/w_limit
IIUC there is no such tag anymore (git ls-remote --tags https://github.com/embeddings-benchmark/mteb.git)
So, I downloaded requirements.txt
curl -o requirements.txt https://raw.githubusercontent.com/google-deepmind/limit/refs/heads/main/code/requirements.txt
and replaced
git+https://github.com/embeddings-benchmark/mteb.git@w_limit
by
git+https://github.com/embeddings-benchmark/mteb.git@2.6.4
and was running uv pip install locally
uv pip install -r requirements.txt
which seems to work :-)
I had a follow-up problem though on Mac OS, that jax[cuda12]==0.6.2 does not exist for Mac.