Skip to content

Installation

UUID-Forge can be installed using various package managers. Choose the method that best fits your workflow.

Requirements

  • Python 3.11 or higher
  • pip, uv, or poetry (depending on your preferred installation method)

Installation Methods

uv add uuid-forge

Using pip

pip install uuid-forge

Using poetry

poetry add uuid-forge

Development Installation

If you want to contribute to UUID-Forge or install from source:

# Clone the repository
git clone https://github.com/yourusername/uuid-forge.git
cd uuid-forge

# Install in development mode
uv sync --dev

Verification

Verify your installation by running:

python -c "import uuid_forge; print(uuid_forge.__version__)"

Or use the CLI:

uuid-forge --version

Next Steps