Installation
Gurita requires Python 3.11 or greater and relies heavily on the following libraries: NumPy, SciPy, Pandas, Seaborn (and hence Matplotlib), Scikit-learn.
You can install gurita directly from source code.
Installing directly from source code
Clone this repository:
git clone https://github.com/bjpop/gurita
Move into the repository directory:
cd gurita
Python 3 is required for this software.
Gurita can be installed using pip
in a variety of ways:
Inside a virtual environment:
python3 -m venv gurita_dev
source gurita_dev/bin/activate
pip install -U /path/to/gurita
Into the global package database for all users:
pip install -U /path/to/gurita
Into the user package database (for the current user only):
pip install -U --user /path/to/gurita