Skip to content

installation

Niladri Das edited this page Aug 19, 2025 · 1 revision

Installation Guide

Prerequisites

  • Rust 1.70.0 or later
  • Cargo (Rust's package manager)
  • Internet connection for downloading dependencies

Installation Methods

From Source (Recommended)

  1. Clone the repository:

    git clone https://github.com/yourusername/harper.git
    cd harper
  2. Build the project:

    cargo build --release
  3. (Optional) Install globally:

    cargo install --path .

Using Cargo

cargo install harper-ai

Verifying Installation

Run the following command to verify the installation:

harper --version

System Requirements

Minimum Requirements

  • 4GB RAM
  • 1GB free disk space
  • Stable internet connection

Supported Platforms

  • Linux (x86_64, aarch64)
  • macOS (Intel, Apple Silicon)
  • Windows (x86_64, WSL2 recommended)

Updating

To update an existing installation:

cd /path/to/harper
git pull
cargo build --release

Uninstallation

To remove Harper:

cargo uninstall harper
# Remove configuration files if needed
rm -rf ~/.config/harper

Clone this wiki locally