-
Notifications
You must be signed in to change notification settings - Fork 1
Installation
Marc-Olivier Buob edited this page Jun 10, 2022
·
10 revisions
Install build dependencies:
sudo apt update
sudo apt install git python3 python3-setuptools python3-pip g++ libboost-dev libboost-python-dev
Get the pattern_clustering
module and install it:
mkdir ~/git
cd ~/git
git clone https://github.com/nokia/pattern-clustering
cd pattern-clustering
sudo python3 ./setup.py install
Install python dependencies:
sudo pip3 install -r requirements.txt
If you want to run the tests and build the documentation, also run:
sudo pip3 install -r requirements_dev.txt
This repository provides some notebooks:
-
pattern_clustering.ipynb
presents a minimal example ; -
minimal.ipynb
demonstrates how to process the Apache log using Logmine, Drain, and the pattern_clustering module.
To install Jupyter lab, we refer the reader to this link.