From 6ab234aecb210a7ca5c2418668357aece30fdf63 Mon Sep 17 00:00:00 2001 From: Lior Kesos Date: Mon, 3 Mar 2025 14:28:35 +0200 Subject: [PATCH 1/2] Update README.md Adding missing dataset --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 5eced54..38bb6bb 100644 --- a/README.md +++ b/README.md @@ -134,6 +134,9 @@ source venv/bin/activate # activate virtual env pip install ".[dev]" pip install ".[gui]" +# Install datasets +pip install datasets + # Start LogAI service export PYTHONPATH='.' # make sure to add current root to PYTHONPATH python3 gui/application.py # Run local plotly dash server. From 0862b2d6965d761bc5cc71d66a3b7deab56a224c Mon Sep 17 00:00:00 2001 From: Lior Kesos Date: Mon, 3 Mar 2025 16:14:37 +0200 Subject: [PATCH 2/2] Update README.md Added nltk gotcha that slowed me down setting up --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 38bb6bb..ac5f04b 100644 --- a/README.md +++ b/README.md @@ -109,6 +109,11 @@ please install extra requirements by `pip install "logai[dev]"`. > ```shell > python -m nltk.downloader punkt > ``` +> Make sure you move the nltk_data in to the virtual environment. +> ```shell +> mv ~/nltk_share .venv/share/nltk_data +> ``` + ## Getting Started