Hey, had a bit of a rough time to make things work so I want to share the exact steps which worked for me:
This did not work, as I was missing stable-audio-tools, flash-attn and webdataset:
After many retries I got this sequence of commands working:
./install.sh
# install missing dependencies
uv pip install stable-audio-tools
# if this fails you need to sort out your gcc and nvcc compiler situation
uv pip install flash-attn==2.8.3 --no-build-isolation
# install more missing deps
uv pip install webdataset
uv pip install PyWavelets --no-binary PyWavelets --force-reinstall --no-cache
./run.sh
Note that uv pip install flash-attn==2.8.3 --no-build-isolation is highly platform specific as it will get compiled on your mashine so good luck!
All the other commands were rather straight forward hope this helps🙌
Hey, had a bit of a rough time to make things work so I want to share the exact steps which worked for me:
This did not work, as I was missing
stable-audio-tools,flash-attnandwebdataset:After many retries I got this sequence of commands working:
Note that
uv pip install flash-attn==2.8.3 --no-build-isolationis highly platform specific as it will get compiled on your mashine so good luck!All the other commands were rather straight forward hope this helps🙌