Spaces:
Build error
Build error
Update requirements.txt
Browse files- requirements.txt +12 -21
requirements.txt
CHANGED
|
@@ -1,28 +1,19 @@
|
|
| 1 |
-
# Use pip
|
| 2 |
pip<24.1
|
| 3 |
|
| 4 |
-
# Core
|
| 5 |
-
torch==2.2.0
|
| 6 |
-
torchaudio
|
| 7 |
-
infer-rvc-python==1.1.0
|
| 8 |
-
fairseq==0.12.2
|
| 9 |
-
hydra-core==1.0.7
|
| 10 |
-
|
| 11 |
-
# Gradio and related packages
|
| 12 |
gradio[oauth,mcp]==6.2.0
|
| 13 |
uvicorn>=0.14.0
|
| 14 |
fastapi<0.113.0
|
| 15 |
-
spaces
|
| 16 |
|
| 17 |
-
#
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
pydantic~=1.0
|
| 24 |
soundfile
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
|
|
|
| 1 |
+
# Use pip version <24.1 to avoid metadata issues
|
| 2 |
pip<24.1
|
| 3 |
|
| 4 |
+
# Core packages
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
gradio[oauth,mcp]==6.2.0
|
| 6 |
uvicorn>=0.14.0
|
| 7 |
fastapi<0.113.0
|
|
|
|
| 8 |
|
| 9 |
+
# RVC dependencies
|
| 10 |
+
infer-rvc-python==1.1.0
|
| 11 |
+
fairseq==0.12.2
|
| 12 |
+
hydra-core==1.0.7
|
| 13 |
+
|
| 14 |
+
# Supporting libraries
|
|
|
|
| 15 |
soundfile
|
| 16 |
+
numpy
|
| 17 |
+
scipy
|
| 18 |
+
torch>=2.0.0
|
| 19 |
+
torchaudio
|