Spaces:
Building
Building
Update .huggingface.yml
Browse files- .huggingface.yml +7 -0
.huggingface.yml
CHANGED
@@ -1,3 +1,10 @@
|
|
1 |
build:
|
2 |
commands:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
- pip install --no-cache-dir -r requirements.txt
|
|
|
1 |
build:
|
2 |
commands:
|
3 |
+
# Install system dependencies from apt.txt
|
4 |
+
- apt-get update && xargs -a apt.txt apt-get install -y
|
5 |
+
|
6 |
+
# Upgrade pip
|
7 |
+
- python -m pip install --upgrade pip
|
8 |
+
|
9 |
+
# Install Python dependencies from requirements.txt
|
10 |
- pip install --no-cache-dir -r requirements.txt
|