Installation
Sistine requires Python 3.10+. streamlit will be automatically installed as the underlying framework engine.
Using uv (Recommended)
We highly recommend using uv for a much faster installation experience. It will also help you create your virtual environment seamlessly.
bash
# 1. Create a virtual environment
uv venv
# 2. Activate the virtual environment
# On Windows:
.venv\Scripts\activate
# On macOS/Linux:
source .venv/bin/activate
# 3. Install sistine
uv pip install sistineUsing Standard pip
If you prefer the standard Python toolchain, make sure you are in a virtual environment, then install via pip:
bash
# Create and activate venv
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install sistine
pip install sistine