sima-cli is the command-line interface for SiMa developer workflows. Use it to authenticate, set up SDK containers, update DevKits, install packages, download artifacts, and access Model Zoo and App Zoo content.
The full command reference is generated as Markdown under docs/sima-cli.
Use the generated docs for detailed options, arguments, subcommands, and full help text:
For most users, install the latest official release from the public installer URL for your operating system.
Run the installer from a terminal:
curl -fsSL https://artifacts.neat.sima.ai/sima-cli/linux-mac.sh | bashAfter installation, open a new terminal or reload your shell profile, then verify the install:
sima-cli --versionDownload and run the Windows installer from PowerShell:
Invoke-WebRequest https://artifacts.neat.sima.ai/sima-cli/windows.bat -OutFile windows.bat
.\windows.batAfter installation, open a new Command Prompt or PowerShell window, then verify the install:
sima-cli --versionUse install.py only when you need to choose a specific tested branch build or release instead of installing the latest official PyPI release.
On Linux, macOS, or DevKit:
curl -fsSL https://artifacts.neat.sima.ai/sima-cli/install.py -o sima-cli-install.py
python3 sima-cli-install.pyInstall a specific branch or release:
python3 sima-cli-install.py feature/my-branch latest
python3 sima-cli-install.py v2.1.6 latestOn Windows PowerShell:
Invoke-WebRequest https://artifacts.neat.sima.ai/sima-cli/install.py -OutFile sima-cli-install.py
python .\sima-cli-install.pyTo install a specific branch or release:
python .\sima-cli-install.py feature/my-branch latest
python .\sima-cli-install.py v2.1.6 latestRelease tags such as v2.1.6 install from public PyPI. Branch names install tested artifacts from artifacts.neat.sima.ai/sima-cli.
Public PyPI releases can also be installed directly:
pip install sima-clisima-cli --help
sima-cli --version
sima-cli loginUse --internal or SIMA_CLI_INTERNAL=1 when internal Artifactory resources are required:
sima-cli --internal login
SIMA_CLI_INTERNAL=1 sima-cli install -v 2.1.2 tools/model-compiler/amd64Set up SDK containers:
sima-cli sdk setup
sima-cli sdk neatInstall Model Compiler from package metadata:
# amd64 host
sima-cli install -v 2.1.2 tools/model-compiler/amd64
# arm64 host
sima-cli install -v 2.1.2 tools/model-compiler/arm64Download or install Neat artifacts:
sima-cli neat download core main
sima-cli install --neat core mainUpdate a DevKit:
sima-cli update -v 2.1.1 -yExplore Model Zoo and App Zoo content:
sima-cli modelzoo list
sima-cli appzoo list| Command | Description | Docs |
|---|---|---|
sima-cli appzoo |
Access sample apps from the App Zoo. | docs |
sima-cli bootimg |
Prepare a bootable image for the SiMa DevKit. | docs |
sima-cli device |
Discover nearby SiMa.ai devices on the local network. | docs |
sima-cli download |
Download a file or folder from a URL. | docs |
sima-cli install |
Install SiMa packages from metadata. | docs |
sima-cli login |
Authenticate with the SiMa Developer Portal. | docs |
sima-cli logout |
Remove cached credentials and config files. | docs |
sima-cli mla |
Machine Learning Accelerator utilities. | docs |
sima-cli modelzoo |
Access models from the Model Zoo. | docs |
sima-cli neat |
Discover, download, and install Neat build artifacts. | docs |
sima-cli network |
Configure DevKit network settings. | docs |
sima-cli nvme |
Perform NVMe operations on the Modalix DevKit. | docs |
sima-cli packages |
Manage the local sima-cli package registry. | docs |
sima-cli playbooks |
Install and manage coding-agent playbooks. | docs |
sima-cli sdcard |
Prepare SD card storage. | docs |
sima-cli sdk |
Manage and launch SDK container environments. | docs |
sima-cli selfupdate |
Update sima-cli manually. | docs |
sima-cli serial |
Connect to the UART serial console of a DevKit. | docs |
sima-cli update |
Update a SiMa DevKit or remote device. | docs |
Install development dependencies and run tests:
pip install -e ".[dev]"
python -m pytest tests/unitRegenerate CLI documentation:
python scripts/generate_cli_markdown_docs.pybuild.sh also regenerates the command docs before building the package.
- Python 3.8 or newer
- Docker for SDK container workflows
- DevKit connectivity for device update, serial, network, and boot-image workflows
For command-specific prerequisites, see the generated command reference.
For issues and feature requests, use the sima-cli GitHub repository or contact the SiMa.ai development team.