Releases: EdwinZhanCN/Lumen-SDK
Release list
Release v1.3.2
Lumen Host Broker v1.3.2
lumen-hostd discovers Lumen inference nodes on the LAN via mDNS and
republishes them over /v1/nodes/watch for applications that cannot
perform local-network discovery themselves (e.g. inside Docker Desktop).
It is a discovery-only control-plane process — it never proxies
inference payloads.
🚀 Installation
Download and install
# Linux AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.3.2/lumen-hostd-v1.3.2-linux-amd64.tar.gz | tar xz
sudo install -m 0755 lumen-hostd /usr/local/bin/
# Linux ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.3.2/lumen-hostd-v1.3.2-linux-arm64.tar.gz | tar xz
sudo install -m 0755 lumen-hostd /usr/local/bin/
# macOS AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.3.2/lumen-hostd-v1.3.2-darwin-amd64.tar.gz | tar xz
xattr -d com.apple.quarantine lumen-hostd 2>/dev/null || true
sudo install -m 0755 lumen-hostd /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumen-hostd 2>/dev/null || true
# macOS ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.3.2/lumen-hostd-v1.3.2-darwin-arm64.tar.gz | tar xz
xattr -d com.apple.quarantine lumen-hostd 2>/dev/null || true
sudo install -m 0755 lumen-hostd /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumen-hostd 2>/dev/null || true
# Windows AMD64: download lumen-hostd-v1.3.2-windows-amd64.zip and unzipmacOS builds are currently unsigned/not notarized. If you download the archive with a browser or another tool that adds Gatekeeper quarantine, remove it before installing:
xattr -d com.apple.quarantine lumen-hostd 2>/dev/null || trueRun as a background service
lumen-hostd install # registers a per-user background service (LaunchAgent / systemd user unit / Task Scheduler) and starts it
lumen-hostd status # check install/running state
lumen-hostd doctor # diagnose discovery and reachability issues
lumen-hostd uninstall # remove the background serviceOr run it in the foreground (e.g. in a container): lumen-hostd serve.
What's Changed
- fix: balancer behavior by @EdwinZhanCN in #6
Full Changelog: v1.3.1...v1.3.2
Release v1.3.1
Lumen Host Broker v1.3.1
lumen-hostd discovers Lumen inference nodes on the LAN via mDNS and
republishes them over /v1/nodes/watch for applications that cannot
perform local-network discovery themselves (e.g. inside Docker Desktop).
It is a discovery-only control-plane process — it never proxies
inference payloads.
🚀 Installation
Download and install
# Linux AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.3.1/lumen-hostd-v1.3.1-linux-amd64.tar.gz | tar xz
sudo install -m 0755 lumen-hostd /usr/local/bin/
# Linux ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.3.1/lumen-hostd-v1.3.1-linux-arm64.tar.gz | tar xz
sudo install -m 0755 lumen-hostd /usr/local/bin/
# macOS AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.3.1/lumen-hostd-v1.3.1-darwin-amd64.tar.gz | tar xz
xattr -d com.apple.quarantine lumen-hostd 2>/dev/null || true
sudo install -m 0755 lumen-hostd /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumen-hostd 2>/dev/null || true
# macOS ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.3.1/lumen-hostd-v1.3.1-darwin-arm64.tar.gz | tar xz
xattr -d com.apple.quarantine lumen-hostd 2>/dev/null || true
sudo install -m 0755 lumen-hostd /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumen-hostd 2>/dev/null || true
# Windows AMD64: download lumen-hostd-v1.3.1-windows-amd64.zip and unzipmacOS builds are currently unsigned/not notarized. If you download the archive with a browser or another tool that adds Gatekeeper quarantine, remove it before installing:
xattr -d com.apple.quarantine lumen-hostd 2>/dev/null || trueRun as a background service
lumen-hostd install # registers a per-user background service (LaunchAgent / systemd user unit / Task Scheduler) and starts it
lumen-hostd status # check install/running state
lumen-hostd doctor # diagnose discovery and reachability issues
lumen-hostd uninstall # remove the background serviceOr run it in the foreground (e.g. in a container): lumen-hostd serve.
Full Changelog: v1.3.0...v1.3.1
Release v1.3.0
Lumen Gateway v1.3.0
🖥️ Lumen Gateway (GUI)
Lumen Gateway is a cross-platform system tray application that runs in the background and hosts the daemon, routing strategies, and an interactive React-based network discovery dashboard.
macOS Installation (Universal)
- Download
lumen-gateway-v1.3.0-darwin-universal.zip. - Unzip the file and move
Lumen Gateway.appto your/Applicationsfolder. - Right-click the app and choose Open (or run
xattr -d com.apple.quarantine "/Applications/Lumen Gateway.app"to bypass Gatekeeper).
Windows Installation (AMD64)
- Download
Lumen-Gateway-v1.3.0-windows-amd64.exe. - Double-click to run. The gateway will run in your system tray on port
5866(configurable).
🚀 Installation
Download Binaries
# Linux AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.3.0/lumengateway-v1.3.0-linux-amd64.tar.gz | tar xz
sudo install -m 0755 lumengatewayd lumengateway /usr/local/bin/
# Linux ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.3.0/lumengateway-v1.3.0-linux-arm64.tar.gz | tar xz
sudo install -m 0755 lumengatewayd lumengateway /usr/local/bin/
# macOS AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.3.0/lumengateway-v1.3.0-darwin-amd64.tar.gz | tar xz
xattr -d com.apple.quarantine lumengatewayd lumengateway 2>/dev/null || true
sudo install -m 0755 lumengatewayd lumengateway /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumengatewayd /usr/local/bin/lumengateway 2>/dev/null || true
# macOS ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.3.0/lumengateway-v1.3.0-darwin-arm64.tar.gz | tar xz
xattr -d com.apple.quarantine lumengatewayd lumengateway 2>/dev/null || true
sudo install -m 0755 lumengatewayd lumengateway /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumengatewayd /usr/local/bin/lumengateway 2>/dev/null || truemacOS builds are currently unsigned/not notarized. If you download the archive with a browser or another tool that adds Gatekeeper quarantine, remove it before installing:
xattr -d com.apple.quarantine lumengatewayd lumengateway 2>/dev/null || true📋 Changes
- fix: new release 1.3.0 for Lumilio Photos (6727583)
Release v1.2.9
Lumen Hub v1.2.9
🖥️ Lumen Gateway (GUI)
Lumen Gateway is a cross-platform system tray application that runs in the background and hosts the daemon, routing strategies, and an interactive React-based network discovery dashboard.
macOS Installation (Universal)
- Download
lumen-gateway-v1.2.9-darwin-universal.zip. - Unzip the file and move
Lumen Gateway.appto your/Applicationsfolder. - Right-click the app and choose Open (or run
xattr -d com.apple.quarantine "/Applications/Lumen Gateway.app"to bypass Gatekeeper).
Windows Installation (AMD64)
- Download
Lumen-Gateway-v1.2.9-windows-amd64.exe. - Double-click to run. The gateway will run in your system tray on port
5866(configurable).
🚀 Installation
Download Binaries
# Linux AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.9/lumenhub-v1.2.9-linux-amd64.tar.gz | tar xz
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
# Linux ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.9/lumenhub-v1.2.9-linux-arm64.tar.gz | tar xz
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
# macOS AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.9/lumenhub-v1.2.9-darwin-amd64.tar.gz | tar xz
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumenhubd /usr/local/bin/lumenhub 2>/dev/null || true
# macOS ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.9/lumenhub-v1.2.9-darwin-arm64.tar.gz | tar xz
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumenhubd /usr/local/bin/lumenhub 2>/dev/null || truemacOS builds are currently unsigned/not notarized. If you download the archive with a browser or another tool that adds Gatekeeper quarantine, remove it before installing:
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true📋 Changes
- feat: new EmbeddingV1 schema, for score (49a2896)
Release v1.2.8
Lumen Hub v1.2.8
🖥️ Lumen Gateway (GUI)
Lumen Gateway is a cross-platform system tray application that runs in the background and hosts the daemon, routing strategies, and an interactive React-based network discovery dashboard.
macOS Installation (Universal)
- Download
lumen-gateway-v1.2.8-darwin-universal.zip. - Unzip the file and move
Lumen Gateway.appto your/Applicationsfolder. - Right-click the app and choose Open (or run
xattr -d com.apple.quarantine "/Applications/Lumen Gateway.app"to bypass Gatekeeper).
Windows Installation (AMD64)
- Download
Lumen-Gateway-v1.2.8-windows-amd64.exe. - Double-click to run. The gateway will run in your system tray on port
5866(configurable).
🚀 Installation
Download Binaries
# Linux AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.8/lumenhub-v1.2.8-linux-amd64.tar.gz | tar xz
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
# Linux ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.8/lumenhub-v1.2.8-linux-arm64.tar.gz | tar xz
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
# macOS AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.8/lumenhub-v1.2.8-darwin-amd64.tar.gz | tar xz
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumenhubd /usr/local/bin/lumenhub 2>/dev/null || true
# macOS ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.8/lumenhub-v1.2.8-darwin-arm64.tar.gz | tar xz
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumenhubd /usr/local/bin/lumenhub 2>/dev/null || truemacOS builds are currently unsigned/not notarized. If you download the archive with a browser or another tool that adds Gatekeeper quarantine, remove it before installing:
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true📋 Changes
- Update VERSION (3705d6f)
Release v1.2.7
Lumen Hub v1.2.7
🖥️ Lumen Gateway (GUI)
Lumen Gateway is a cross-platform system tray application that runs in the background and hosts the daemon, routing strategies, and an interactive React-based network discovery dashboard.
macOS Installation (Universal)
- Download
lumen-gateway-v1.2.7-darwin-universal.zip. - Unzip the file and move
Lumen Gateway.appto your/Applicationsfolder. - Right-click the app and choose Open (or run
xattr -d com.apple.quarantine "/Applications/Lumen Gateway.app"to bypass Gatekeeper).
Windows Installation (AMD64)
- Download
Lumen-Gateway-v1.2.7-windows-amd64.exe. - Double-click to run. The gateway will run in your system tray on port
5866(configurable).
🚀 Installation
Download Binaries
# Linux AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.7/lumenhub-v1.2.7-linux-amd64.tar.gz | tar xz
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
# Linux ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.7/lumenhub-v1.2.7-linux-arm64.tar.gz | tar xz
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
# macOS AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.7/lumenhub-v1.2.7-darwin-amd64.tar.gz | tar xz
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumenhubd /usr/local/bin/lumenhub 2>/dev/null || true
# macOS ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.7/lumenhub-v1.2.7-darwin-arm64.tar.gz | tar xz
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumenhubd /usr/local/bin/lumenhub 2>/dev/null || truemacOS builds are currently unsigned/not notarized. If you download the archive with a browser or another tool that adds Gatekeeper quarantine, remove it before installing:
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true📋 Changes
- feat: fix mDNS discovery and auto-resolve service from capabilities (8e17541)
Release v1.2.6
Lumen Hub v1.2.6
🖥️ Lumen Gateway (GUI)
Lumen Gateway is a cross-platform system tray application that runs in the background and hosts the daemon, routing strategies, and an interactive React-based network discovery dashboard.
macOS Installation (Universal)
- Download
lumen-gateway-v1.2.6-darwin-universal.zip. - Unzip the file and move
Lumen Gateway.appto your/Applicationsfolder. - Right-click the app and choose Open (or run
xattr -d com.apple.quarantine "/Applications/Lumen Gateway.app"to bypass Gatekeeper).
Windows Installation (AMD64)
- Download
Lumen-Gateway-v1.2.6-windows-amd64.exe. - Double-click to run. The gateway will run in your system tray on port
5866(configurable).
🚀 Installation
Download Binaries
# Linux AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.6/lumenhub-v1.2.6-linux-amd64.tar.gz | tar xz
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
# Linux ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.6/lumenhub-v1.2.6-linux-arm64.tar.gz | tar xz
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
# macOS AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.6/lumenhub-v1.2.6-darwin-amd64.tar.gz | tar xz
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumenhubd /usr/local/bin/lumenhub 2>/dev/null || true
# macOS ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.6/lumenhub-v1.2.6-darwin-arm64.tar.gz | tar xz
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumenhubd /usr/local/bin/lumenhub 2>/dev/null || truemacOS builds are currently unsigned/not notarized. If you download the archive with a browser or another tool that adds Gatekeeper quarantine, remove it before installing:
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true📋 Changes
- Delete semantic_text_embed_test.go (541e3a1)
Release v1.2.5
Lumen Hub v1.2.5
🖥️ Lumen Gateway (GUI)
Lumen Gateway is a cross-platform system tray application that runs in the background and hosts the daemon, routing strategies, and an interactive React-based network discovery dashboard.
macOS Installation (Universal)
- Download
lumen-gateway-v1.2.5-darwin-universal.zip. - Unzip the file and move
Lumen Gateway.appto your/Applicationsfolder. - Right-click the app and choose Open (or run
xattr -d com.apple.quarantine "/Applications/Lumen Gateway.app"to bypass Gatekeeper).
Windows Installation (AMD64)
- Download
Lumen-Gateway-v1.2.5-windows-amd64.exe. - Double-click to run. The gateway will run in your system tray on port
5866(configurable).
🚀 Installation
Download Binaries
# Linux AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.5/lumenhub-v1.2.5-linux-amd64.tar.gz | tar xz
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
# Linux ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.5/lumenhub-v1.2.5-linux-arm64.tar.gz | tar xz
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
# macOS AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.5/lumenhub-v1.2.5-darwin-amd64.tar.gz | tar xz
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumenhubd /usr/local/bin/lumenhub 2>/dev/null || true
# macOS ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.5/lumenhub-v1.2.5-darwin-arm64.tar.gz | tar xz
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumenhubd /usr/local/bin/lumenhub 2>/dev/null || truemacOS builds are currently unsigned/not notarized. If you download the archive with a browser or another tool that adds Gatekeeper quarantine, remove it before installing:
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true📋 Changes
- Update pool.go (f936e9f)
Release v1.2.4
Lumen Hub v1.2.4
🖥️ Lumen Gateway (GUI)
Lumen Gateway is a cross-platform system tray application that runs in the background and hosts the daemon, routing strategies, and an interactive React-based network discovery dashboard.
macOS Installation (Universal)
- Download
lumen-gateway-v1.2.4-darwin-universal.zip. - Unzip the file and move
Lumen Gateway.appto your/Applicationsfolder. - Right-click the app and choose Open (or run
xattr -d com.apple.quarantine "/Applications/Lumen Gateway.app"to bypass Gatekeeper).
Windows Installation (AMD64)
- Download
Lumen-Gateway-v1.2.4-windows-amd64.exe. - Double-click to run. The gateway will run in your system tray on port
5866(configurable).
🚀 Installation
Download Binaries
# Linux AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.4/lumenhub-v1.2.4-linux-amd64.tar.gz | tar xz
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
# Linux ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.4/lumenhub-v1.2.4-linux-arm64.tar.gz | tar xz
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
# macOS AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.4/lumenhub-v1.2.4-darwin-amd64.tar.gz | tar xz
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumenhubd /usr/local/bin/lumenhub 2>/dev/null || true
# macOS ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.4/lumenhub-v1.2.4-darwin-arm64.tar.gz | tar xz
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumenhubd /usr/local/bin/lumenhub 2>/dev/null || truemacOS builds are currently unsigned/not notarized. If you download the archive with a browser or another tool that adds Gatekeeper quarantine, remove it before installing:
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true📋 Changes
- Update go.work.sum (328a90d)
Release v1.2.3
Lumen Hub v1.2.3
🖥️ Lumen Gateway (GUI)
Lumen Gateway is a cross-platform system tray application that runs in the background and hosts the daemon, routing strategies, and an interactive React-based network discovery dashboard.
macOS Installation (Universal)
- Download
lumen-gateway-v1.2.3-darwin-universal.zip. - Unzip the file and move
Lumen Gateway.appto your/Applicationsfolder. - Right-click the app and choose Open (or run
xattr -d com.apple.quarantine "/Applications/Lumen Gateway.app"to bypass Gatekeeper).
Windows Installation (AMD64)
- Download
Lumen-Gateway-v1.2.3-windows-amd64.exe. - Double-click to run. The gateway will run in your system tray on port
5866(configurable).
🚀 Installation
Download Binaries
# Linux AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.3/lumenhub-v1.2.3-linux-amd64.tar.gz | tar xz
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
# Linux ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.3/lumenhub-v1.2.3-linux-arm64.tar.gz | tar xz
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
# macOS AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.3/lumenhub-v1.2.3-darwin-amd64.tar.gz | tar xz
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumenhubd /usr/local/bin/lumenhub 2>/dev/null || true
# macOS ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.3/lumenhub-v1.2.3-darwin-arm64.tar.gz | tar xz
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumenhubd /usr/local/bin/lumenhub 2>/dev/null || truemacOS builds are currently unsigned/not notarized. If you download the archive with a browser or another tool that adds Gatekeeper quarantine, remove it before installing:
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true📋 Changes
- fix readme (02fb93b)