Before you can run the app, you need to clone the repository and install its dependencies inside a Python virtual environment. The steps below cover the full setup on Windows using the standardDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/davi-huanuco/python-matriz-correlacion/llms.txt
Use this file to discover all available pages before exploring further.
py launcher.
Flet requires Python 3.x. Make sure you have Python 3 installed before proceeding. You can check your version by running
py --version in a terminal.Create a virtual environment
Create a new virtual environment named This generates a
venv inside the project directory:venv/ folder that will hold all the project’s Python packages, isolated from your global Python installation.Activate the virtual environment
Activate the environment so that subsequent Your terminal prompt will change to show
pip commands install packages into it:(venv) when the environment is active.Install dependencies
Install all required packages from This installs the following packages:
requirements.txt:| Package | Version | Purpose |
|---|---|---|
flet | 0.85.0 | Desktop GUI framework |
flet-desktop | 0.85.0 | Flet native desktop target |
httpx | 0.28.1 | HTTP client |
msgpack | 1.1.2 | Binary serialization |
anyio | 4.13.0 | Async I/O support |
oauthlib | 3.3.1 | OAuth utilities |
repath | 0.9.0 | URL path matching |
six | 1.17.0 | Python 2/3 compatibility |
certifi, httpcore, h11, idna | various | HTTP/TLS support |