Install the CLI¶
The CLI is the eve-iac console script from the eve-iac Python package (same wheel as the SDK).
pip install eve-iac
eve-iac --help
That name is not on the public Python index. Point pip at this GitLab project, or install a wheel from a GitLab Release / out/python/:
pip install eve-iac --index-url https://gitlab.com/api/v4/projects/eve-ng-dev%2Feve-iac/packages/pypi/simple
pip install eve_iac-0.4.2-py3-none-any.whl
From this repository without installing:
PYTHONPATH=sdk/python:cli python3 -m eveiac_cli --help
Requires Python 3. The CLI talks to eve-iac-agent over HTTPS. It does not replace the agent.
See Install packages. Next: CLI configuration.