NLTK recently producing errors

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
...