logu29 commited on
Commit
df5db4f
·
verified ·
1 Parent(s): 90ada29

Create requirement.txt

Browse files
Files changed (1) hide show
  1. requirement.txt +9 -8
requirement.txt CHANGED
@@ -1,11 +1,12 @@
 
1
  gradio
2
- transformers
3
- textblob
4
- moviepy
5
- openai-whisper
6
  opencv-python
 
 
7
  deepface
8
- torch
9
- pytube
10
- snscrape
11
- sqlalchemy
 
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)