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 pnt-coreUsing Pip
You can also install with standard pip:
pip install pnt-coreDevelopment 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 pnt_core
print(pnt_core.__version__)