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 | sh

This downloads and installs the latest version for your platform.

System Requirements

PlatformSupported
macOSYes
LinuxYes
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 --version

You should see output like:

Text
sus 1.0.0

Configuration

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.com

Or pass it as a flag:

Bash
sus add express --api-url https://your-api.example.com

Updating

To update sus to the latest version, run the install script again:

Bash
curl -fsSL https://sus-pm.com/install.sh | sh

Uninstalling

Remove the binary from your system:

Bash
rm ~/.local/bin/sus

Next Steps

  • Commands - Learn all available commands and options