Spaces:
Running
Running
Update huggingface.yml
Browse files- huggingface.yml +10 -4
huggingface.yml
CHANGED
@@ -1,12 +1,18 @@
|
|
1 |
build:
|
2 |
-
os: debian-11 #
|
3 |
-
docker: false
|
4 |
commands:
|
5 |
# System dependencies
|
6 |
- apt-get update
|
7 |
-
- apt-get install -y --no-install-recommends
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
|
9 |
-
# Python
|
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
|
|
|
1 |
build:
|
2 |
+
os: debian-11 # Critical for package availability
|
3 |
+
docker: false # Force non-Docker build
|
4 |
commands:
|
5 |
# System dependencies
|
6 |
- apt-get update
|
7 |
+
- apt-get install -y --no-install-recommends \
|
8 |
+
ffmpeg \
|
9 |
+
libsndfile1 \
|
10 |
+
libgl1 \
|
11 |
+
libsm6 \
|
12 |
+
libxext6 \
|
13 |
+
libglib2.0-0
|
14 |
|
15 |
+
# Python environment
|
16 |
- python -m pip install --upgrade pip setuptools wheel
|
17 |
- pip install --no-cache-dir imageio==2.31.1 imageio-ffmpeg==0.4.8
|
18 |
- pip install --no-cache-dir moviepy==1.0.3
|