Installation
Install from PyPI
pip install flaxon
Installs the core framework with no optional dependencies.
Optional Dependencies
# With server (Uvicorn)
pip install "flaxon[server]"
# With templates (Jinja2)
pip install "flaxon[templates]"
# Standard (server + templates)
pip install "flaxon[standard]"
# Development tools
pip install "flaxon[dev]"
# All extras
pip install "flaxon[standard,dev,server]"
Install from GitHub
git clone https://github.com/aldanedev-create/Flaxon-Backend-Framework.git
cd Flaxon-Backend-Framework
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install -e ".[standard,dev]"
Verify Installation
python -c "import flaxon; print(flaxon.__version__)"
Success
If you see the version number, Flaxon is installed correctly!