cli
Installation
Install the sus CLI on your system
Quick Install
The fastest way to install sus:
Bash
curl -fsSL https://sus-pm.com/install.sh | shThis downloads and installs the latest version for your platform.
System Requirements
| Platform | Supported |
|---|---|
| macOS | Yes |
| Linux | Yes |
| Windows (WSL) | Yes |
You'll also need one of the following depending on your project:
For JavaScript/Node.js projects:
- Node.js - Required for the npm packages you're installing
- A package manager - npm, yarn, pnpm, or bun
For Python projects:
- Python 3.8+ - Required for Python packages you're installing
- A package manager - pip, poetry, pipenv, or uv
Verify Installation
After installing, verify sus is working:
Bash
sus --versionYou should see output like:
Text
sus 1.0.0Configuration
sus works out of the box with no configuration required.
Optional: Custom API Endpoint
If you're running a self-hosted sus backend, set the API URL:
Bash
export SUS_API_URL=https://your-api.example.comOr pass it as a flag:
Bash
sus add express --api-url https://your-api.example.comUpdating
To update sus to the latest version, run the install script again:
Bash
curl -fsSL https://sus-pm.com/install.sh | shUninstalling
Remove the binary from your system:
Bash
rm ~/.local/bin/susNext Steps
- Commands - Learn all available commands and options
On this page