comment the reason for the replace

This commit is contained in:
sanjaycal
2025-02-24 10:20:53 -05:00
parent 05a7e026da
commit 3d8893cb27

View File

@@ -65,9 +65,9 @@ Dependencies are managed with uv (installed separately). Add new requirements to
# default GPU enabled requirements
uv pip compile requirements.in -o requirements-uv.txt
# requirements for systmes without GPU support
# requirements for systems without GPU support
uv pip compile requirements.in -o requirements-no-gpu-uv.txt --extra-index-url=https://download.pytorch.org/whl/cpu
sed -i 's/\+cpu//g' requirements-no-gpu-uv.txt
sed -i 's/\+cpu//g' requirements-no-gpu-uv.txt #replaces all +cpu in the requirements as uv pip compile adds it to all the pytorch libraries, and that breaks the install
```
# Windows Notes