Skip to content

Installation

Nicholas Cheek edited this page Jun 14, 2025 · 7 revisions

Installation Guide

Method 1: Direct Download (Recommended)

Download the latest release for your platform:

macOS

# intel mac
curl -L "https://github.com/nickcheek/laravel-log-parser/releases/latest/download/logparse-darwin-amd64" -o logparse
sudo mv logparse /usr/local/bin/
sudo chmod +x /usr/local/bin/logparse

# silicon mac
curl -L "https://github.com/nickcheek/laravel-log-parser/releases/latest/download/logparse-darwin-arm64" -o logparse
sudo mv logparse /usr/local/bin/
sudo chmod +x /usr/local/bin/logparse
### Linux
curl -L "https://github.com/nickcheek/laravel-log-parser/releases/latest/download/logparse-linux-amd64" -o logparse
sudo mv logparse /usr/local/bin/
sudo chmod +x /usr/local/bin/logparse

Windows

Download logparse-windows-amd64.exe from the releases page and add it to your PATH.

Method 2: Install Script

Use the automated installer:

curl -sSL https://raw.githubusercontent.com/nickcheek/laravel-log-parser/main/install.sh | bash

Method 3: Build from Source

Requires Go 1.19+:

git clone https://github.com/nickcheek/laravel-log-parser.git cd laravel-log-parser go build -o logparse parse.go sudo mv logparse /usr/local/bin/

Method 4: Go Install

If you have Go installed:

go install github.com/nickcheek/laravel-log-parser@latest

Verification

Test the installation:

logparse --help logparse --version

Updating

To update to the latest version, simply repeat the installation process. The tool will automatically replace the existing binary.

Clone this wiki locally