Hi @soadadfarhan,
According to that error message, nltk couldn’t find the punkt package, have you tried:
import nltk
nltk.download(‘punkt’)
from nltk.corpus import stopwords
...
Hi @soadadfarhan,
According to that error message, nltk couldn’t find the punkt package, have you tried:
import nltk
nltk.download(‘punkt’)
from nltk.corpus import stopwords
...