You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(setup): pre-install torch so flash-attn can build (v0.1.1)
nano-vllm-voxcpm pulls in flash-attn, which needs torch importable at
build time. pip's default PEP 517 build isolation gives it an empty
sandbox, so the setup from v0.1.0 died at first install with
"ModuleNotFoundError: No module named 'torch'".
Fix:
* setup.sh pre-installs torch + torchaudio before the main
requirements pass.
* requirements.txt drops the torch/torchaudio pins so they come only
from the pre-install step; avoids double-resolve and version
conflicts.
* The main requirements install now uses --no-build-isolation so
flash-attn picks up torch from the venv.
v0.1.0 never actually installed end-to-end on a clean machine;
v0.1.1 is the first release that does.
0 commit comments