Graphic User Interface Installation

You need to have Python2.X or Python3.X to run it. Moreover, UI uses some libraries to support a dynamic and intuitive graphical user interface, you can see the list of libraries. Normally, some of them are include in Python distribution. You can find below the list of necessary libraries of the UI.

Prerequisites for GUI

Modules which are bundled in the Python installation :

Modules which need to be installed in addition to Python :

Install modules to Python 2.X

sudo apt-get install python-tk python-imaging-tk
pip -m install Pillow
python -mpip install -U pip
python -mpip install -U matplotlib
pip install -U numpy scipy

Install modules to Python 3.X

sudo apt-get install python3-tk python-imaging-tk
pip -m install Pillow
python -mpip install -U pip
python -mpip install -U matplotlib
pip install -U numpy scipy

Execution

The graphic user interface is a Python program which can be start on a Terminal

Python 2.X : In the main directory

python main.py

Python 3.X : In the main directory:

python3 main.py

How to use GUI ?

How to use GUI