Installation
Install Custy
Choose a supported native installation method, prepare its requirements, and verify the Custy CLI.
python -m pip install --index-url $PRIVATE_INDEX_URL custy==2.1.2Category
Quick Command
python -m pip install [OPTIONS] SOURCEOverviewâ
Custy can be installed from the project's private GitLab PyPI registry, a source checkout, a Python artifact attached to a release, or the Git repository itself. Contributors should use an editable installation with the development dependency group. Docker is a separate alternative when you do not want to install Python or Git directly on the host.
Requirements
The required host tools depend on whether Custy runs natively or inside Docker.
Requirements
Python 3.14+
pip
Git
Virtual Environment
Docker
Make
Feature-Specific Tools
Install Only When Needed
Commitizen
custy[commitizen] when using Commitizen versioning or commit-message validation. It remains optional for normal Custy workflows and is included in the production Docker image.Pre-Commit Hooks
custy[hooks] when local Custy must execute pre-commit-managed hooks directly. Projects without pre-commit do not need this extra. The production image includes it.Interactive Editor
Remote Credentials
Docker Compose
Choose an Installation Method
Native Installation Choices
Private GitLab PyPI
Source Checkout
Release Artifact
Git Revision
Editable Contributor Setup
Method 1: Install from Private GitLab PyPI
Ask a project maintainer for the GitLab project ID and a deploy token limited
to read_package_registry. Then install one exact package version in an
isolated environment.python -m venv venv
# Activate the environment, then install one reviewed version.
python -m pip install --index-url "https://<deploy-user>:<deploy-token>@gitlab.com/api/v4/projects/<project-id>/packages/pypi/simple" "custy==2.1.2"
custy --version
The Git release tag remains SemVer, while package metadata is canonical PEP 440. For example, tag v2.1.0-rc.1 is installed as custy==2.1.0rc1.
Method 2: Install from a Source Checkout
Clone the repository, create a virtual environment, and install the runtime
package. This is the recommended native path when no reviewed release artifact
has been selected.git clone https://github.com/devalltect00/Custy.git
cd Custy
python -m venv venv
Activate the environment for your shell.venv\Scripts\Activate.ps1
python -m pip install --upgrade pip
python -m pip install .source venv/bin/activate
python -m pip install --upgrade pip
python -m pip install .
Method 3: Install a Release Artifact
Custy's release workflow is configured to attach a Python wheel and source
distribution. Open the
Custy Releases page, choose a
reviewed release, and confirm that the selected release actually contains the
artifact before downloading it.python -m pip install ./custy-<version>-py3-none-any.whlpython -m pip install ./custy-<version>.tar.gz
Method 4: Install Directly from Git
When you do not need a local checkout, pip can install a reviewed Git tag or
commit into the active environment.# Replace <tag-or-commit> with the exact revision you reviewed
python -m pip install "git+https://github.com/devalltect00/Custy.git@<tag-or-commit>"
Omitting @<tag-or-commit> follows the repository's default branch and is less
reproducible.
Editable Developer Installation
Contributors working on Custy itself should install the source tree in editable
mode with the development dependencies declared in pyproject.toml.python -m pip install -e ".[dev]"
Use python -m pip install -e . only when you need editable runtime code
without the optional development tools. Add docs when working on Custy's
legacy MkDocs sources: python -m pip install -e ".[dev,docs]".
Optional Makefile Helpers
The repository Makefile can create the standard venv/ environment and run
the editable installation targets. These helpers are intended for a Custy
source checkout and require GNU Make.make venv
make upgrade-pip
make install-dev
make installinstalls editable runtime dependencies.make install-devadds the development dependency group.make install-alladds both development and legacy documentation tools.- Make is only a convenience layer; the equivalent
python -m pipcommands remain valid without it.
Verify the Installation
Installation Check
- The intended environment is activeRequired
Your shell resolves Python and Custy from the selected virtual environment or installation.
- The Python version is compatibleRequired
python --versionreports Python 3.14 or newer for native use. - The installed version is visibleRequired
custy --versionprints package version information. - Command help rendersRequired
custy --helpshows the public commands and global options.
python --version
git --version
custy --version
custy --helpFrom a source checkout, python -m app --help is an alternative module entry
point when you need to distinguish a PATH problem from an application problem.