yongyeol commited on
Commit
f843936
·
verified ·
1 Parent(s): 87e6f23

Update postInstall

Browse files
Files changed (1) hide show
  1. postInstall +5 -2
postInstall CHANGED
@@ -1,3 +1,6 @@
1
  #!/usr/bin/env bash
2
- # audiocraft를 torch 의존성 없이 설치해 충돌 방지
3
- pip install --no-cache-dir git+https://github.com/facebookresearch/audiocraft@main --no-deps
 
 
 
 
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"