UTC :: --:--:-- RUST :: stable :: 1.97.0 CLIENT :: browser :: detecting PYPI :: litlaunch :: 1.0.10 GITHUB :: LitLaunch :: live CLIENT :: AWS/REGION :: us-east-2 LINUX :: stable_kernel :: 7.1.3 CLOUDFLARE :: pages :: operational GITHUB :: RoleThread :: live NODE :: lts :: 24.18.0 CLIENT :: os :: detecting CRATES.IO :: crates :: 297k+ GITHUB :: actions :: operational CLIENT :: ip :: masked PYTHON :: stable :: 3.14.x UTC :: --:--:-- RUST :: stable :: 1.97.0 CLIENT :: browser :: detecting PYPI :: litlaunch :: 1.0.10 GITHUB :: LitLaunch :: live CLIENT :: AWS/REGION :: us-east-2 LINUX :: stable_kernel :: 7.1.3 CLOUDFLARE :: pages :: operational GITHUB :: RoleThread :: live NODE :: lts :: 24.18.0 CLIENT :: os :: detecting CRATES.IO :: crates :: 297k+ GITHUB :: actions :: operational CLIENT :: ip :: masked PYTHON :: stable :: 3.14.x
docs::litlaunch :: Start
~/docs/litlaunch/docs/Public/Guides/installation.md

Installation

LitLaunch Docs

./view_on_github
repo
Lattice-Foundry/LitLaunch
path
docs/Public/Guides/installation.md
ver
1.0.10
commit
f1e1292ea8
synced
Jun 14, 2026, 10:23 PM UTC

Package Install

Install from PyPI:

python -m pip install litlaunch

Verify the CLI entry points:

litlaunch --help
python -m litlaunch --help

The module form is useful when the environment can import LitLaunch but the console script directory is not on PATH.

Source Checkout

For development:

git clone https://github.com/Lattice-Foundry/LitLaunch
cd LitLaunch
python -m pip install -e .[dev]

Rerun the editable install after changing package versions or build metadata. Editable-install metadata is generated during installation, so stale local metadata can make importlib.metadata.version("litlaunch") report an older version than litlaunch.__version__ until the package is reinstalled.

Run checks:

python -m pytest
python -m ruff check .
python -m ruff format --check .
python -m mypy src/litlaunch
python scripts/check_release.py

Python Versions

The local development environment currently uses Python 3.14.5. Package metadata allows Python 3.10 and newer. CI currently checks Python 3.10 through 3.14 on Windows, Linux, and macOS. Windows and Linux receive first-party manual validation. macOS behavior is supported with lighter first-party validation while community coverage broadens.

Do not assume packaged-app behavior has been validated unless the integration notes for that packaging path say so.