I downloaded nltk package via pip , but when I run my code , i get a messeage, "Resource stopwords not found, please use the NLTK downloader to obtain the resource ...."
from nltk.corpus import stopwords
stop_words = set(stopwords.words('english'))
Do I need any other packages installed, my understanding is stopwords is included in the NLTK package and should be available once i run pip install NLTK.