Spaces:
Runtime error
Runtime error
Update requirements.txt
Browse files- requirements.txt +8 -8
requirements.txt
CHANGED
@@ -1,17 +1,17 @@
|
|
1 |
-
# CPU wheels
|
2 |
torch==2.1.2 --index-url https://download.pytorch.org/whl/cpu
|
3 |
torchaudio==2.1.2 --index-url https://download.pytorch.org/whl/cpu
|
4 |
numpy==1.23.5
|
5 |
|
6 |
-
# Music generation
|
7 |
-
audiocraft==0.0.2
|
8 |
pydub==0.25.1
|
9 |
psutil==5.9.8
|
|
|
10 |
|
11 |
-
# Web
|
12 |
-
gradio==
|
13 |
-
typer==0.7.0
|
14 |
|
15 |
-
#
|
16 |
huggingface_hub==0.23.0
|
17 |
-
spacy==3.5.2 # fixed upper bound on typer (<0.8)
|
|
|
1 |
+
# CPU wheels for Torch & Torchaudio
|
2 |
torch==2.1.2 --index-url https://download.pytorch.org/whl/cpu
|
3 |
torchaudio==2.1.2 --index-url https://download.pytorch.org/whl/cpu
|
4 |
numpy==1.23.5
|
5 |
|
6 |
+
# Music generation dependencies
|
7 |
+
audiocraft==0.0.2
|
8 |
pydub==0.25.1
|
9 |
psutil==5.9.8
|
10 |
+
spacy==3.5.2 # pins typer <0.8
|
11 |
|
12 |
+
# Web UI & CLI
|
13 |
+
gradio==5.31.0
|
14 |
+
typer==0.7.0 # satisfies both Gradio & spaCy
|
15 |
|
16 |
+
# Hugging Face integration
|
17 |
huggingface_hub==0.23.0
|
|