Spaces:
Build error
Build error
Create requirement.txt
Browse files- requirement.txt +9 -8
requirement.txt
CHANGED
@@ -1,11 +1,12 @@
|
|
|
|
1 |
gradio
|
2 |
-
|
3 |
-
|
4 |
-
moviepy
|
5 |
-
openai-whisper
|
6 |
opencv-python
|
|
|
|
|
7 |
deepface
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
|
|
1 |
+
requirements = '''
|
2 |
gradio
|
3 |
+
tensorflow
|
4 |
+
torch
|
|
|
|
|
5 |
opencv-python
|
6 |
+
moviepy
|
7 |
+
textblob
|
8 |
deepface
|
9 |
+
'''
|
10 |
+
|
11 |
+
with open("requirements.txt", "w") as f:
|
12 |
+
f.write(requirements)
|