Install akt CLI

Install the latest akt release, verify the binary, and create your first context.

This guide walks you through installing the binary, running the first-time setup, and enabling shell completion.


Install akt

Select your operating system:


First Run

On the first interactive launch, akt fetches available networks from akash-network/net and asks which ones to configure:

Terminal window
akt version

If no config exists, the bootstrap wizard runs before the command. It creates ~/.config/akt/config.yaml, sets up the first context, and offers Akash Console onboarding. The selected network’s current high gas price becomes the transaction fee floor.

Everything akt stores, including config, context credentials, keyrings, and deployment state, lives under ~/.config/akt by default. Set AKT_HOME to move it.


Shell Completion

Generate a completion script for your shell:

Terminal window
# Bash
akt completion bash > /etc/bash_completion.d/akt
# Zsh
akt completion zsh > "${fpath[1]}/_akt"
# Fish
akt completion fish > ~/.config/fish/completions/akt.fish

Restart your shell for completion to take effect.


Next Steps

Now that you’re set up, you can:


Troubleshooting

akt is not found

The binary isn’t in your PATH. Try:

Terminal window
# Find where it's installed
which akt
# Add to PATH (Linux/macOS)
export PATH=$PATH:/path/to/akt

macOS blocks the binary

If macOS Gatekeeper refuses to run the downloaded binary, remove the quarantine attribute:

Terminal window
xattr -d com.apple.quarantine /usr/local/bin/akt

Bootstrap cannot fetch networks

The first-run wizard needs network access to fetch network definitions. If you are offline or behind a restrictive proxy, create a network manually instead:

Terminal window
akt context network create local --chain-id localnet-1 --rpc http://localhost:26657

Need Help?