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