Installation#

Requirements#

The application has only been tested on Ubuntu gnu/linux machines. It should however be possible to use it in on most linux distributions, WSLs and also virtual machines of most linux distributions.

To start off, you need these to succesfully use the application.

  • python version 3.10 is a requirement might work on earlier python 3 versions:

$ sudo apt install python3.10
  • virtualenv package for virtual enviroment creation, other packages are installed automatically later:

$ pip install virtualenv

Getting started#

This will install the application and its components into the Documents directory. It will also install several required python packages, including venv, which is used to create a virtual enviroment.

  1. Go to a suitable installation folder, for example Documents:

$ cd /home/username/Documents
  1. Clone the repository to a suitable directory, for example:

$ git clone https://strade.fit.vutbr.cz/git/xlanro00/BP_DP-xlanro00.git
  1. Go inside cloned directory:

$ cd BP_DP-xlanro00
  1. Create and enter the virtual enviroment:

$ virtualenv .venv && source .venv/bin/activate
  1. Install required python modules from requirements.txt:

(.venv)$ pip install -r requirements.txt
  1. Now, you are all set to run the application.

    Examples of how to do this are listedin the section bellow.