mtyrrell commited on
Commit
5161ad1
·
verified ·
1 Parent(s): 608ceea

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -2,6 +2,10 @@ import streamlit as st
2
  import os
3
  import pkg_resources
4
 
 
 
 
 
5
  # # Using this wacky hack to get around the massively ridicolous managed env loading order
6
  def is_installed(package_name, version):
7
  try:
 
2
  import os
3
  import pkg_resources
4
 
5
+ !pip install nltk
6
+ import nltk
7
+ nltk.download('punkt')
8
+
9
  # # Using this wacky hack to get around the massively ridicolous managed env loading order
10
  def is_installed(package_name, version):
11
  try: