Skip to content

Installation Guide

Detailed installation instructions for AgenticGoKit across different platforms and environments.

System Requirements

  • Go: Version 1.21 or later
  • Operating System: Windows, Linux, or macOS
  • Memory: At least 512MB available RAM
  • Storage: 100MB for installation

Installation Methods

Windows (PowerShell)

powershell
iwr -useb https://raw.githubusercontent.com/kunalkushwaha/agenticgokit/master/install.ps1 | iex

Linux/macOS (Bash)

bash
curl -fsSL https://raw.githubusercontent.com/kunalkushwaha/agenticgokit/master/install.sh | bash

2. Go Install

bash
go install github.com/kunalkushwaha/agenticgokit/cmd/agentcli@latest

3. Manual Installation

  1. Visit the Releases page
  2. Download the binary for your platform:
    • Windows: agentcli-windows-amd64.exe
    • Linux: agentcli-linux-amd64
    • macOS: agentcli-darwin-amd64
  3. Extract and place in your PATH

4. From Source

bash
git clone https://github.com/kunalkushwaha/agenticgokit.git
cd agenticgokit
go build -o agentcli ./cmd/agentcli

Verification

Verify your installation:

bash
agentcli version
agentcli --help

You should see output similar to:

AgenticGoKit CLI v1.0.0
Built with Go 1.21

Next Steps

  1. Quick Start - Create your first agent
  2. Your First Agent - Detailed tutorial
  3. Tutorials - Comprehensive learning path

Troubleshooting

Common Issues

Command not found

  • Ensure the binary is in your PATH
  • On Windows, restart your terminal after installation

Permission denied (Linux/macOS)

bash
chmod +x agentcli

Go version too old

bash
# Update Go to 1.21+
go version

For more help, see our troubleshooting guide.

Released under the Apache 2.0 License.