Trying to learn NLP and Sentiment Analysis in Python and came across the NLTK. Did a few tutorials but got stuck on the tokenization function as it does not work on me (command line is saying that I don't have the resources).
I already tried installing punkt
and although that was downloaded, the command line still presents the same error:
Resource u'taggers/maxent_treebank_pos_tagger/english.pickle'
not found. Please use the NLTK Downloader to obtain the
resource: >>> nltk.download()
Searched in:
- 'C:\\Users\\JeromePogi/nltk_data'
- 'C:\\nltk_data'
- 'D:\\nltk_data'
- 'E:\\nltk_data'
- 'C:\\Python27\\nltk_data'
- 'C:\\Python27\\lib\\nltk_data'
- 'C:\\Users\\JeromePogi\\AppData\\Roaming\\nltk_data'
- u''
I've literally tried everything including putting the nltk_data folder in each of the directories that it has searched in but to no avail. What can I do to resolve this error?