Description
While installing the project dependencies using:
pip install -r application/requirements.txt
the installation fails with the following error:
ERROR: Could not find a version that satisfies the requirement torch==2.9.1
ERROR: No matching distribution found for torch==2.9.1
It appears that torch==2.9.1 is specified in application/requirements.txt, but this version does not currently exist on PyPI. The latest available PyTorch versions are around 2.2.x.
Because of this, the dependency installation cannot complete successfully.
Environment
OS: macOS
Python version: 3.11
pip version: latest
Possible Fix
Updating the dependency in application/requirements.txt to something like:
torch>=2.2.0
or
torch==2.2.2
may resolve the issue.
Please let me know if you would like me to submit a PR with this change.