Spaces:
Running on Zero
Running on Zero
Add matplotlib to requirements for the VRAM graphs
Browse filesThe two live graphs in app.py use matplotlib (Agg backend). It was already
a local transitive dep but not pinned in requirements.txt, so the HF Space
build failed with ModuleNotFoundError: No module named 'matplotlib'.
Co-Authored-By: Claude <noreply@anthropic.com>
- requirements.txt +2 -1
requirements.txt
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
gradio==6.20.0
|
| 2 |
huggingface_hub>=0.20.0
|
| 3 |
requests>=2.28.0
|
| 4 |
-
spaces>=0.26.0
|
|
|
|
|
|
| 1 |
gradio==6.20.0
|
| 2 |
huggingface_hub>=0.20.0
|
| 3 |
requests>=2.28.0
|
| 4 |
+
spaces>=0.26.0
|
| 5 |
+
matplotlib>=3.8.0
|