Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -134,6 +139,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.
Expand Down