Installation

Installation#

Requirements#

  • numpy>=1.10.0

  • scipy>=1.1.0

  • matplotlib>=1.3.1

  • scikit-learn>=1.5

Procedure#

You can install Optifik using pip in a virtualenv:

pip install optifik

Alternatively, you can install directly from source:

cd optifik
pip install -e .

or from the main branch (in development):

git clone https://github.com/sciunto-org/optifik.git
cd optifik
pip install -e .

Check the installation and the version:

python -c 'import optifik; print(optifik.__version__)'

Tests#

Install

pip install -e ".[dev]"

To run the test suite:

pytest