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
1. One-Line Installation (Recommended)
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
- Visit the Releases page
- Download the binary for your platform:
- Windows:
agentcli-windows-amd64.exe
- Linux:
agentcli-linux-amd64
- macOS:
agentcli-darwin-amd64
- Windows:
- 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
- Quick Start - Create your first agent
- Your First Agent - Detailed tutorial
- 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.