pydistcheck
is a command-line interface (CLI) written in Python.
Because of this, the preferred way to install it from PyPI is with pipx
(docs).
pipx install pydistcheck
Checking .conda
-format conda
packages requires some additional dependencies.
To install those, run the following.
pipx install 'pydistcheck[conda]'
If that doesn't work for you, see the sections below for other options.
If you do not want to use pipx
but want to install from PyPI, install with pip
.
pip install pydistcheck
Checking .conda
-format conda
packages requires some additional dependencies.
To install those, run the following.
pip install 'pydistcheck[conda]'
If you use tools like conda
or mamba
to manage environments, install pydistcheck
from conda-forge.
conda install -c conda-forge pydistcheck
To install the latest development (not released) version of pydistcheck
, clone the repo.
git clone https://github.com/jameslamb/pydistcheck.git
cd pydistcheck
pipx install '.[conda]'