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.
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
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