Spaces:
Sleeping
Sleeping
MaenGit commited on
Commit ·
c336072
1
Parent(s): 6d7e1e6
update
Browse files- Dockerfile +1 -1
- requirements.txt +1 -0
Dockerfile
CHANGED
|
@@ -14,7 +14,7 @@ COPY requirements.txt .
|
|
| 14 |
|
| 15 |
# Upgrade pip and install requirements
|
| 16 |
RUN pip install --upgrade pip setuptools wheel
|
| 17 |
-
RUN pip install --no-cache-dir torch torchaudio
|
| 18 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 19 |
|
| 20 |
# Copy your app
|
|
|
|
| 14 |
|
| 15 |
# Upgrade pip and install requirements
|
| 16 |
RUN pip install --upgrade pip setuptools wheel
|
| 17 |
+
RUN pip install --no-cache-dir torch torchaudio torchcodec
|
| 18 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 19 |
|
| 20 |
# Copy your app
|
requirements.txt
CHANGED
|
@@ -1,5 +1,6 @@
|
|
| 1 |
torch
|
| 2 |
torchaudio
|
|
|
|
| 3 |
coqui-tts==0.27.5
|
| 4 |
numpy<2.0
|
| 5 |
flask
|
|
|
|
| 1 |
torch
|
| 2 |
torchaudio
|
| 3 |
+
torchcodec
|
| 4 |
coqui-tts==0.27.5
|
| 5 |
numpy<2.0
|
| 6 |
flask
|