Skip to content

Installation

Requirements

  • Python 3.10 or newer
  • pip or another modern Python package installer

Install from PyPI

pip install pkg_infra

Install from a local checkout

Clone the repository and install it in editable mode:

git clone https://github.com/saezlab/pkg_infra.git
cd pkg_infra
pip install -e .

Install development extras

If you are working on the package itself, install the relevant extras:

pip install -e ".[docs,tests,dev]"

Verify the installation

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