Installation
How to install {{package-name-kebab-case}}
Installation
This guide covers different ways to install {{package-name-kebab-case}}.
Using UV (Recommended)
The fastest way to get started is with UV:
uv pip install {{package-name-kebab-case}}Using Pip
You can also install with standard pip:
pip install {{package-name-kebab-case}}Development Installation
For development, clone the repository and set up the environment:
git clone https://github.com/{{git-org}}/{{package-name-kebab-case}}.git
cd {{package-name-kebab-case}}
# With Nix (recommended)
nix develop
# Or with UV
uv syncVerification
Verify your installation by running:
import {{package-name-kebab-case}}
print({{package-name-kebab-case}}.__version__)