Spaces:
Runtime error
Runtime error
Update postInstall
Browse files- postInstall +5 -2
postInstall
CHANGED
@@ -1,3 +1,6 @@
|
|
1 |
#!/usr/bin/env bash
|
2 |
-
#
|
3 |
-
|
|
|
|
|
|
|
|
1 |
#!/usr/bin/env bash
|
2 |
+
set -e # 오류 발생 시 즉시 중단
|
3 |
+
echo "▶ installing audiocraft ..."
|
4 |
+
pip install --no-cache-dir \
|
5 |
+
git+https://github.com/facebookresearch/audiocraft@main --no-deps
|
6 |
+
echo "✓ audiocraft installed"
|