How do I install?
Download for Windows.
Run one command for Linux/Mac.
Follow the prompts.
Done.
Linux
Open a terminal and run this command:
curl -sSL https://glancerf.zl4st.com/installers/GlanceRF-install-Linux.sh | bash
macOS
Open Terminal (Applications → Utilities) and run this command:
curl -sSL https://glancerf.zl4st.com/installers/GlanceRF-install-Mac.sh | bash
Docker
Run the image from Docker Hub:
docker run -p 8080:8080 pomtom44/glancerf
Then open http://localhost:8080.
Full guides
Method 1 — Quick Installer
Same as the quick steps above: small download, then it pulls the latest code and runs the full installer. Windows: run the .exe. Linux / macOS: paste the curl … | bash line into a terminal. You do not need the GitHub ZIP.
Method 2 — Download from Github and run the installer
Download the repo, extract, then run a script from Project/installers.
- Windows:
installers\install-windows.bat - Linux: in the
Projectfolder,chmod +x installers/install-linux.shthen./installers/install-linux.sh(detects desktop vs SSH, distro, and Python). - macOS: in the
Projectfolder,chmod +x installers/install-mac.shthen./installers/install-mac.sh.
The installer sets up Python and dependencies, then asks how you want to run GlanceRF (desktop, browser+terminal, terminal only, or service—options depend on OS and whether you are on a desktop or SSH session).
Method 3 — Docker
Image on Docker Hub. Same minimal command as the Docker box above:
docker run -p 8080:8080 pomtom44/glancerf
Then open http://localhost:8080 (headless server). Volumes, compose, and persistence: Docker guide.
Method 4 — Fully Manual Install
If you prefer not to use the installer, or the installer did not work, follow these steps from the Project folder.
- Install Python 3.8 or higher if needed — from python.org (Windows: tick "Add Python to PATH") or your system package manager (Linux/Mac). Check with
python --versionorpy -3 --versionon Windows. - Decide desktop or headless — Desktop (Windows): use
requirements-windows-desktop.txt; GlanceRF opens in its own window. Headless: userequirements-windows.txt(Windows),requirements-linux.txt(Linux), orrequirements-mac.txt(macOS); no window; use a browser. For headless, editglancerf_config.jsonand set"desktop_mode": "headless"or"browser". - Install dependencies —
pip install -r requirements/requirements-linux.txt(Linux),requirements-mac.txt(macOS), orrequirements-windows.txt/requirements-windows-desktop.txt(Windows). - Run GlanceRF —
python run.py(orpy -3 run.pyon Windows). Then use Setup and Layout in the browser (see Configure your dashboard above).