Getting Started
fling requires Python 3.8+. Pick the installation method that fits your workflow.
From GitHub (latest)
bash
pip install git+https://github.com/vedanshalways/Fling.git
ℹAlways installs the latest commit from the main branch.
With visualizations
.visualize() requires matplotlib. Install it with fling in one step:
bash
pip install "fling[viz] @ git+https://github.com/vedanshalways/Fling.git"
Development install
bash
git clone https://github.com/vedanshalways/Fling.git
cd Fling
pip install -e ".[dev]"
Verify your install
python
import fling
print(fling.__version__)