Installing the IMAS-Validator¶
To get started, you can install it from pypi.org:
pip install imas-validator
Local installation from sources¶
We recommend using a venv. Then, clone the IMAS-Validator repository
and run pip install:
python3 -m venv ./venv
. venv/bin/activate
git clone git@github.com:iterorganization/IMAS-Validator.git
cd IMAS-Validator
pip install --upgrade pip
pip install --upgrade wheel setuptools
pip install .[all]
To test the installation
python -c "import imas_validator; print(imas_validator.__version__)" python -m pytestTo build the IMAS-Validator documentation, execute:
make -C docs html
Last update:
2025-06-05