Skip to content

Installation instructions

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

Installation

Flask installation

To set up this project, you must install flask.

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 flask

Linux/MacOS installation

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

Clone this wiki locally