Identifying Your Platform
To download the correct LPI binary, you need to know your operating system and architecture. Here's how to identify them.
Windows
Check your architecture:
- Press
Win + Pause/Break
or right-click "This PC" → Properties - Look for "System type":
- 64-bit operating system → Download
lpi-windows-x64.exe
- 32-bit operating system → Not supported (Windows 10+ required)
- 64-bit operating system → Download
Command line method:
wmic os get osarchitecture
macOS
Check your processor type:
- Click Apple menu → About This Mac
- Look for "Processor" or "Chip":
- Apple M1/M2/M3 → Download
lpi-darwin-arm64
- Intel processor → Download
lpi-darwin-x64
- Apple M1/M2/M3 → Download
Command line method:
uname -m
arm64
→ Apple Silicon (M1/M2/M3)x86_64
→ Intel
Linux
Check your architecture:
uname -m
Common results:
x86_64
oramd64
→ Downloadlpi-linux-x64
aarch64
orarm64
→ Downloadlpi-linux-arm64
armv7l
→ Downloadlpi-linux-arm
(32-bit ARM)i386
ori686
→ Not supported
Check your Linux distribution:
cat /etc/os-release
LPI works on most modern Linux distributions including:
- Ubuntu 18.04+
- Debian 9+
- CentOS/RHEL 7+
- Fedora
- Arch Linux
- Alpine Linux
Not Sure?
If you're still unsure, try this command (works on Linux/macOS):
echo "OS: $(uname -s), Arch: $(uname -m)"
Or email us at [email protected] with your system details and we'll help you choose the right binary.