Skip to content

Installation instructions

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

Installation

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
> python -m pip install flask requests

Linux/MacOS installation

$ mkdir myproject
$ cd myproject
$ python3 -m venv .venv
# Activate the enviroment
$ . .venv/bin/activate
$ python3 -m pip install flask requests

Clone this wiki locally