Installation

PyCCAPT requires Python >=3.9.

PyPI Installation (Online)

Default installation (core dependencies only):

pip install pyccapt

Install optional dependency groups:

pip install "pyccapt[calibration]"
pip install "pyccapt[control]"
pip install "pyccapt[full]"

[full] installs both control and calibration dependency sets.

Local Development Installation

From the project root:

pip install -e ".[full]"

Module-specific editable installs:

pip install -e ".[control]"
pip install -e ".[calibration]"

Conda Installation

If PyCCAPT is available on your selected conda channel:

conda install -c conda-forge pyccapt

Build and install locally from this repository:

conda install -c conda-forge conda-build
conda build conda-recipe
conda install --use-local pyccapt

If you need both optional dependency sets in that environment:

pip install "pyccapt[full]"

You can also create predefined environments:

conda env create -f environment.yml
conda env create -f environment.full.yml

Running PyCCAPT Control

After installation:

pyccapt

Alternative entrypoint:

python -m pyccapt.control

Running Tutorials

Start JupyterLab:

jupyter lab

Then open notebooks under pyccapt/calibration/tutorials.

Testing

Run module-specific test suites:

pytest -q --run-calibration
pytest -q --run-control

Run all discoverable tests with currently installed optional dependencies:

pytest -q