Skip to content

Installation instructions

Jack Schumacher edited this page Jun 8, 2026 · 4 revisions

pip packages installation

To set up this project, you must install flask and the request package.

Follow the flask python installation instructions for your specific operating system.

Windows installation

> mkdir myproject
> cd myproject
> py -3 -m venv .venv
# Activate the enviroment
> .venv\Scripts\activate
> pip install -r requirements.txt

Linux/MacOS installation

$ mkdir myproject
$ cd myproject
$ python3 -m venv .venv
# Activate the enviroment
$ . .venv/bin/activate
$ pip install -r requirements.txt

Clone this wiki locally