Installation

How to install python-nix-template

Installation

This guide covers different ways to install python-nix-template.

Using Pip

You can also install with standard pip:

pip install pnt-core

Development 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 sync

Verification

Verify your installation by running:

import pnt_core
print(pnt_core.__version__)