Installation

Requirements

A Linux distribution with the following programs installed:

Installation

  1. Verify that the Requirements above are fulfilled

  2. Download the statically-linked binary from the Releases page of the ade-cli project

  3. Name the binary ade and install it in your PATH

  4. Make the binary executable: chmod +x ade

  5. Check that it is installed:

$ which ade
/path/to/ade
$ ade --version
<version>

For information on how to install ADE (ade-cli, ADE base image, and ADE volumes) on an offline machine, see Offline Installation.

Update

To update ade-cli, run ade update-cli. If a newer version is available, ade will prompt for confirmation, download the new version, and replace itself.

Autocompletion

To enable autocompletion, add the following to your .zshrc or .bashrc:

if [ -n "$ZSH_VERSION" ]; then
    eval "$(_ADE_COMPLETE=source_zsh ade)"
else
    eval "$(_ADE_COMPLETE=source ade)"
fi

See Usage for next steps.