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.
Go to a suitable installation folder, for example Documents:
$ cd /home/username/Documents
Clone the repository to a suitable directory, for example:
$ git clone ssh://git@strade.fit.vutbr.cz:3022/xlanro00/BP_DP-xlanro00.git
Go inside cloned directory:
$ cd BP_DP-xlanro00
Create and enter the virtual enviroment:
$ virtualenv .venv && source .venv/bin/activate
Install required python modules from requirements.txt:
(.venv)$ pip install -r requirements.txt
- Now, you are all set to run the application.
Examples of how to do this are listedin the section bellow.