I have a django application which I have deployed using below link,
But as I am using nltk for text processing, I am getting below error.
*********************************************************************
Resource 'taggers/maxent_treebank_pos_tagger/PY3/english.pickle'
not found. Please use the NLTK Downloader to obtain the
resource: >>> nltk.download()
Searched in:
- '/root/nltk_data'
- '/usr/share/nltk_data'
- '/usr/local/share/nltk_data'
- '/usr/lib/nltk_data'
- '/usr/local/lib/nltk_data'
- ''
So I know that I am missing data from nltk. I have looked tons of code online but there is no way to download data in google app engine. Below is my requirement.txt for your reference.
Django==1.10.6
gunicorn==19.7.0
nltk==3.0.5
Please let me know if there is a way to do it. Thanks in advance.