# Runtime.cli
URL: https://lsd.tools/docs/api-runtime-cli
Updated: 2026-07-17

## Example

```python
rt = find_runtime()
print(rt.cli)   # → C:\Program Files\LSD Desktop\LSDCli.exe
```

Run a package headlessly through it:

```python
import subprocess
subprocess.run([str(rt.cli), "run", "project.lsd"])
```

## Notes

`LSDCli.exe` is the headless console client — the preferred entry point for tools and scripts that run
packages without a GUI. `None` when the file isn't found in the install. Use
[executable](/docs/api-runtime-executable) to fall back to the GUI launcher automatically.

## See also

**API:** [gui](/docs/api-runtime-gui) · [executable](/docs/api-runtime-executable) · [python](/docs/api-runtime-python)

**Guides:** [CLI commands](/docs/api-cli)
