The README instructs users to run:
pip install -U huggingface_hub
This installs huggingface_hub==1.0.0, which conflicts with the version required by transformers>=4.30.0 in requirements.txt (huggingface_hub<1.0).
Error message:
ERROR: transformers 4.57.1 requires huggingface-hub<1.0,>=0.34.0, but you have huggingface-hub 1.0.0 which is incompatible.
Reproduction
conda create -n videoagenttrek python=3.10
conda activate videoagenttrek
pip install -r requirements.txt
pip install -U huggingface_hub
Suggested fix
- Pin
huggingface_hub<1.0.0 in the README
or
- Upgrade
transformers in requirements.txt to a version supporting huggingface_hub>=1.0.0.