Hi! Thanks for sharing this great project.
I wanted to report a quick issue regarding the requirements.txt file. When I tried to set up the environment using pip install -r requirements.txt, it failed with an OSError.
The Issue:
The current requirements.txt contains many local absolute paths (e.g., @ file:///C:/...) instead of standard package versions. Because these paths point to temporary Anaconda/Miniconda build directories on the original machine where the file was generated, anyone else cloning the repo cannot install these dependencies.
Examples from your file:
absl-py @ file:///C:/Users/task_176798450928057/croot/absl-py_1767984631025/work
aiohappyeyeballs @ file:///C:/b/abs_e9fm5mk6ak/croot/aiohappyeyeballs_1734469429350/work
Error Message Received:
ERROR: Could not install packages due to an OSError: [Errno 2] No such file or directory: '/C:/Users/task_176798450928057/croot/absl-py_1767984631025/work'
Proposed Solution:
Could you please update the requirements.txt to remove these local paths?
Thanks for your hard work on this project! Looking forward to running it.