Skip to main content

Installation

Quick installation guide for AnyTask CLI.

Recommended: Install Script

The easiest way to get started:
curl -fsSL https://anyt.dev/install.sh | sh
This script will:
  • Detect your system architecture
  • Download the appropriate binary
  • Install it to your PATH
  • Set up everything automatically

Alternative: uv

Install using uv for Python-based installation:
# Install uv (one-time setup)
curl -LsSf https://astral.sh/uv/install.sh | sh

# Run AnyTask without installing (uses latest version)
uvx anyt --help

# Or install permanently
uv tool install anyt
Why uv?
  • ⚡ 10-100x faster than pip
  • 🎯 No Python environment needed with uvx
  • 🔒 Isolated from system Python
  • 📦 Always uses latest version
Using uvx without installation? Create a shell alias for convenience:
echo 'alias anyt="uvx anyt"' >> ~/.zshrc
source ~/.zshrc
Now you can use anyt directly in all commands while always running the latest version!

Other Methods

# Install pipx
brew install pipx  # macOS/Linux
# or
python3 -m pip install --user pipx

# Install AnyTask
pipx install anyt

Verify

anyt --version
anyt --help

Next Steps

Quick Start Guide - Complete 5-minute setup with authentication and first task

Updating

# Simply re-run the install script
curl -fsSL https://anyt.dev/install.sh | sh

Troubleshooting

Command not found?
# For uv tool install
uv tool list  # Check if installed
export PATH="$HOME/.local/bin:$PATH"  # Add to PATH

# For pipx
pipx ensurepath
source ~/.bashrc  # or ~/.zshrc
Python version issues? With uvx, you don’t need to worry about Python versions - it handles everything automatically. For other methods, ensure Python 3.11+:
python --version