Princeaka commited on
Commit
2ebd4af
·
verified ·
1 Parent(s): 20926fe

Update huggingface.yml

Browse files
Files changed (1) hide show
  1. huggingface.yml +10 -4
huggingface.yml CHANGED
@@ -1,7 +1,13 @@
1
  build:
2
- os: debian-11 # Lock to Bullseye (stable)
3
- docker: false # CRITICAL: Disables Docker fallback
4
  commands:
 
5
  - apt-get update
6
- - apt-get install -y git ffmpeg libsm6 libxext6 libgl1
7
- - pip install -r requirements.txt
 
 
 
 
 
 
1
  build:
2
+ os: debian-11 # Force stable Debian version
3
+ docker: false # Explicitly disable Docker
4
  commands:
5
+ # System dependencies
6
  - apt-get update
7
+ - apt-get install -y --no-install-recommends ffmpeg libsm6 libxext6 libgl1 libsndfile1
8
+
9
+ # Python setup
10
+ - python -m pip install --upgrade pip setuptools wheel
11
+ - pip install --no-cache-dir imageio==2.31.1 imageio-ffmpeg==0.4.8
12
+ - pip install --no-cache-dir moviepy==1.0.3
13
+ - pip install --no-cache-dir -r requirements.txt