How To Download All Nltk Data In Google Cloud App Engine?
I have a django application which I have deployed using below link, https://cloud.google.com/python/django/flexible-environment But as I am using nltk for text processing, I am g
Solution 1:
I did a workaround for getting the nltk data. Firstly I copied required nltk data files into my Django app folder. In settings.py, to access that folder I create one variable.
nltk_dir = os.path.join(BASE_DIR,'first_app','nltk_data')
Then referred this directory variable where I am using nltk.data.path.append() So it basically appends to the list of the path in data.py in nltk.
url = settings.nltk_dir
nltk.data.path.append(url)
Hence, I am able to retrieve nltk data.:)
Post a Comment for "How To Download All Nltk Data In Google Cloud App Engine?"