ba-thesis/sw/README.md

25 lines
433 B
Markdown

# Bachelorarbeit
## Software
Warning: At least a `Python 3.9` or higher is required to properly run the
scripts in this project
### Create a python virtual environment
In the root directory of this repository run
```bash
$ python3 -m venv venv
$ source venv/bin/activate
$ pip3 install -r requirements.txt
```
### Run the unit tests
In the root directory of this repository run
```bash
$ python -m unittest discover test
```