From b8c08269d8c89719255bd25feef9f7b69d524fcd Mon Sep 17 00:00:00 2001 From: codeashu Date: Wed, 28 Aug 2024 14:59:36 +0530 Subject: [PATCH] added note about nltk issue in readme --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index f7f386fa05..01f9c2bc13 100644 --- a/README.md +++ b/README.md @@ -134,6 +134,14 @@ elements = partition(filename="example-docs/eml/fake-email.eml") print("\n\n".join([str(el) for el in elements])) ``` +If you face `nltk` related issue, install it again and download `nltk_data` +```python +!pip install --upgrade nltk + +import nltk +nltk.download('all') +``` + ### Installation Instructions for Local Development The following instructions are intended to help you get up and running with `unstructured`