Gas96 commited on
Commit
c58c83f
·
verified ·
1 Parent(s): 356bf33
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -4,6 +4,10 @@ import requests
4
  import pytz
5
  import yaml
6
  from tools.final_answer import FinalAnswerTool
 
 
 
 
7
  import nltk
8
  import textstat
9
  from nltk.tokenize import word_tokenize, sent_tokenize
 
4
  import pytz
5
  import yaml
6
  from tools.final_answer import FinalAnswerTool
7
+ import os
8
+ os.system('pip install nltk')
9
+ os.system('pip install textstat')
10
+ os.system('pip install collections')
11
  import nltk
12
  import textstat
13
  from nltk.tokenize import word_tokenize, sent_tokenize