Spaces:
Build error
Build error
Fix runtime error by adding proper version constraints to requirements.txt
Browse filesAdded version constraints to ensure compatibility:
- tensorflow>=2.10.0 (was missing version)
- pandas>=1.3.0
- ethos-u-vela>=3.0.0
- numpy>=1.21.0
- pillow>=9.0.0
This should resolve the ModuleNotFoundError: No module named 'tensorflow'
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- requirements.txt +5 -2
requirements.txt
CHANGED
|
@@ -1,3 +1,6 @@
|
|
| 1 |
gradio==4.44.0
|
| 2 |
-
pandas
|
| 3 |
-
ethos-u-vela
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
gradio==4.44.0
|
| 2 |
+
pandas>=1.3.0
|
| 3 |
+
ethos-u-vela>=3.0.0
|
| 4 |
+
tensorflow>=2.10.0
|
| 5 |
+
numpy>=1.21.0
|
| 6 |
+
pillow>=9.0.0
|