{'TRIAL_CSS'}
// OS COMPATIBILITY · ARCHITECTURE GUIDE

Which NexoLoad binary
do I need?

NexoLoad ships pre-built binaries for every major OS and CPU architecture. Run one command, find your match, download. Takes about 30 seconds.

macOS — Universal Binary
arm64 + x86_64 · signed + notarized · any Mac 2018+

Good news — NexoLoad ships a single universal2 Mac binary that runs natively on both Apple Silicon (M1/M2/M3/M4) and Intel Macs. You don't need to know your architecture. Just download and run.

uname -marm64 (Apple Silicon) OR x86_64 (Intel) — both work
nexoload-{lite|pro}-mac file name
chmod +x ./nexoload-lite-mac && ./nexoload-lite-mac --activate YOUR-KEY
↗ Apple's guide: identify your Mac
Linux x86_64
most servers, laptops & desktops

The common Linux flavor — Intel/AMD 64-bit. If you're on a regular Linux box, this is the one.

uname -mx86_64
nexoload-{lite|pro}-linux file name
chmod +x ./nexoload-lite-linux && ./nexoload-lite-linux --activate YOUR-KEY
Linux ARM64 (aarch64)
AWS Graviton · Raspberry Pi · ARM VMs

Use this for AWS Graviton EC2 instances (t4g, c7g, m7g…), Raspberry Pi 4/5 (64-bit OS), or any ARM-based Linux server or VM.

uname -maarch64 (or arm64)
nexoload-{lite|pro}-linux-arm64 file name
chmod +x ./nexoload-lite-linux-arm64 && ./nexoload-lite-linux-arm64 --activate YOUR-KEY
↗ AWS Graviton overview
Windows (x86_64)
Windows 10 / 11 · covers almost all PCs

Works on Windows 10 and 11. ARM-based Windows (Surface Pro X, etc.) is not yet supported.

$ENV:PROCESSOR_ARCHITECTUREAMD64
nexoload-{lite|pro}-windows.exe file name
nexoload-lite-windows.exe --activate YOUR-KEY
↗ Microsoft's guide: find your Windows version
// PLATFORM RECON · NEXO-7 SUPPORT NODE

Still not sure?

If uname -m returns something we didn't cover, or you're on an unusual platform — Solaris, FreeBSD, exotic federal hardware — Python's platform module is the canonical reference for every OS + architecture identifier in existence.

📚 Check Python Library