InstallationΒΆ

uvx.sh provides an installation script that installs scim2-cli permanently on your system.

$ curl -LsSf uvx.sh/scim2-cli/install.sh | sh
powershell -ExecutionPolicy ByPass -c "irm https://uvx.sh/scim2-cli/install.ps1 | iex"

Then you can run:

$ scim2 --help

If you have uv installed, you can run scim2-cli directly without installing it:

$ uvx scim2-cli --help

scim2-cli is published on PyPI.

$ pip install scim2-cli

Then you can run:

$ scim2 --help

Binary files are available on the releases page.

$ wget https://github.com/python-scim/scim2-cli/releases/download/0.2.4/scim2-linux -O scim2
$ chmod +x scim2
$ ./scim2 --help

To run scim2-cli from the sources, uv is needed:

$ git clone https://github.com/python-scim/scim2-cli.git
$ cd scim2-cli
$ uv sync

Then you can run it directly:

$ uv run scim2 --help

Or build a single file binary:

$ uv sync --group bundle
$ uv run pyinstaller scim2.spec
$ ./dist/scim2 --help