Skip to content

Installation

Eric Knee edited this page Jul 6, 2026 · 3 revisions

Note

If you need to install Node.js first, see Node.js Setup (Windows and macOS) before continuing.

Fresh install

  1. Clone or download the dep-cli repository to your local machine

  2. Open your terminal:

    • Windows: PowerShell
    • Mac: bash
  3. Navigate to the dep-cli directory

    root cli directory

  4. Install dependencies: npm install

    npm install

  5. Start the CLI: npm start

    npm start

  6. To exit at any time: CTRL+C (Windows) or Command+. (Mac)


Updating

If you already have the CLI cloned and want to pull the latest version:

  1. Navigate to the dep-cli directory
  2. Pull the latest changes: git pull
  3. Update dependencies: npm install

npm install is a no-op if nothing changed, so it is safe to run every time.


Next: Environment Setup