azizbarank commited on
Commit
603eee7
·
1 Parent(s): ceaa4fc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -1,7 +1,10 @@
1
  import os
2
  os.system('pip install nltk')
3
  os.system('pip install sklearn')
4
- os.system('pip install wget')
 
 
 
5
 
6
  # importing relevant python packages
7
  import streamlit as st
 
1
  import os
2
  os.system('pip install nltk')
3
  os.system('pip install sklearn')
4
+
5
+ nltk.download('punkt')
6
+ nltk.download('stopwords')
7
+ nltk.download('wordnet')
8
 
9
  # importing relevant python packages
10
  import streamlit as st