Installation on MacOS

This is a step-by-step guide to installing Stakpak CLI on MacOS.

Prerequisites

Install Homebrew

Before installing Stakpak CLI, ensure the following prerequisites and dependencies are met.

Install homebrew:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

After installation, you need to add Homebrew to your shell's PATH. The installer will typically provide instructions.

echo >> /home/user/.bashrc
echo 'eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"' >> /home/user/.bashrc
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"

Verify the installation:

brew --version

Stakpak Installation

After installing brew, install Stakpak:

brew tap stakpak/stakpak
brew install stakpak

Usage

  1. Create an API key from your Stakpak console Manage API Keys

  2. Set the environment variable STAKPAK_API_KEY

export STAKPAK_API_KEY=<YOUR-KEY>
  1. Login to Stakpak CLI

stakpak login --api-key $STAKPAK_API_KEY
  1. Confirm the login by viewing your account

stakpak account
  1. Stakpak CLI is now ready to use.

Last updated