Installing the CipherStash CLI

The CipherStash CLI is used to manage your CipherStash account, workspaces, datasets, and a variety of other operational tasks. The CLI is the main way you will interact with CipherStash as a developer.

On macOS

Install via Homebrew:

1brew install cipherstash/tap/stash

macOS prompt

If macOS asks if you are sure you want to open stash, select "Open".

On Linux

Download the binary for your platform:

  1. Make the binary executable:

    1# on x86_64
    2chmod +x $path_to/stash-x86_64-unknown-linux-gnu
    3
    4# on ARM64
    5chmod +x $path_to/stash-aarch64-unknown-linux-gnu
  2. Rename the binary:

    1# on x86_64
    2mv stash-x86_64-unknown-linux-gnu stash
    3
    4# on ARM64
    5mv stash-aarch64-unknown-linux-gnu stash
  3. Place the binary on your $PATH, so you can run it.