Skip to main content
Version: v4.0.0-nightly.20260218

aztec-up CLI Reference

This documentation is auto-generated from the aztec-up CLI help output.

Generated: Thu 05 Feb 2026 00:11:00 UTC

Command: aztec-up

Table of Contents

aztec-up

aztec-up - Aztec version manager

Usage:

aztec-up [command] [options]

Available Commands:

  • env - Output PATH for .aztecrc version (for eval)
  • install <VERSION> - Install a version and switch to it
  • list - List installed versions
  • self-update - Update aztec-up itself to the latest version
  • uninstall <version> - Remove an installed version
  • use [<version>] - Switch to an installed version (or read from .aztecrc)

Options:

  • -h --help - Show this help message

Examples:

aztec-up install 0.85.0   Install a specific version
aztec-up install nightly Install the nightly version
aztec-up use 0.85.0 Switch to version 0.85.0
aztec-up use Read version from .aztecrc and switch to it
aztec-up list Show all installed versions
aztec-up self-update Update aztec-up to latest

Subcommands

aztec-up env

Output PATH export for the version specified in .aztecrc

Usage:

aztec-up env

Options:

  • -h --help - Print help

Examples:

eval "$(aztec-up env)"                        # Set PATH for .aztecrc version
eval "$(aztec-up env 2>/dev/null)" || true # Safe for shell profiles

aztec-up install

Install a version of Aztec and switch to it

Usage:

aztec-up install <VERSION>

Options:

  • -h --help - Print help

Examples:

aztec-up install 0.85.0     # Install a specific version
aztec-up install nightly # Install the nightly build

aztec-up list

List installed Aztec versions and available aliases

Usage:

aztec-up list

Options:

  • -h --help - Print help

Examples:

aztec-up list    # Show all installed versions and aliases

aztec-up self-update

Update aztec-up itself to the latest version

Usage:

aztec-up self-update

Options:

  • -h --help - Print help

Examples:

aztec-up self-update    # Update aztec-up to the latest version

aztec-up uninstall

Remove an installed version of Aztec

Usage:

aztec-up uninstall <VERSION>

Options:

  • -h --help - Print help

Examples:

aztec-up uninstall 0.85.0    # Remove version 0.85.0

aztec-up use

Switch to an installed version of Aztec

Usage:

aztec-up use [VERSION]

Options:

  • -h --help - Print help

Examples:

aztec-up use 0.85.0    # Switch to version 0.85.0
aztec-up use nightly # Switch to nightly (if installed)
aztec-up use # Use version from .aztecrc file