Installation
Bubbaloop can be installed in two ways: using pre-built binaries (recommended for users) or building from source (for developers).
Quick Install (Recommended)
Download and install everything with a single command:
This installs:
| Component | Description |
|---|---|
zenohd |
Zenoh router for pub/sub messaging |
zenoh-bridge |
WebSocket bridge for browser access |
bubbaloop |
Single binary: CLI, TUI, and daemon |
After installation, start a new terminal or source your shell config, then run:
Requirements
- Linux — x86_64 or ARM64 (Ubuntu, Jetson, Raspberry Pi)
Verify Installation
# Check services are running
systemctl --user status zenohd
systemctl --user status bubbaloop-daemon
# Run TUI
bubbaloop
Upgrading
To upgrade to a new version:
The script handles upgrading existing installations.
Development Install
For contributors or building from source.
System Requirements
| Platform | Status | Notes |
|---|---|---|
| Ubuntu 22.04+ | Supported | Primary development platform |
| NVIDIA Jetson | Supported | Tested on JetPack 5.x/6.x |
| macOS | Experimental | GStreamer may require additional setup |
| Windows | Not tested | WSL2 may work |
Hardware Requirements
- CPU: Any x86_64 or ARM64 processor
- RAM: 2GB minimum, 4GB+ recommended for multiple cameras
- Network: Ethernet recommended for multiple camera streams
1. Install Pixi
Pixi is the package manager used by Bubbaloop:
Restart your terminal or source your shell configuration:
2. Clone the Repository
3. Install Dependencies
This automatically installs:
| Component | Description |
|---|---|
| Rust toolchain | Compiler for building Bubbaloop |
| GStreamer | Video capture and processing |
| Node.js | Dashboard runtime |
| protobuf | Protocol buffer compiler |
| pkg-config, cmake | Build tools |
4. Build
Build all Rust binaries:
5. Run
# Start all services
pixi run up
# Or run individually
pixi run daemon # Start daemon
pixi run tui # Start TUI
pixi run dashboard # Start web dashboard
Service Management
The install script sets up systemd user services:
# View status
systemctl --user status zenohd
systemctl --user status zenoh-bridge
systemctl --user status bubbaloop-daemon
# Restart services
systemctl --user restart bubbaloop-daemon
# View logs
journalctl --user -u bubbaloop-daemon -f
# Stop all services
systemctl --user stop bubbaloop-daemon zenoh-bridge zenohd
Troubleshooting
"bubbaloop: command not found"
The installer adds ~/.bubbaloop/bin to your PATH. Restart your terminal or run:
Services not starting
Check if systemd user services are enabled:
"pixi: command not found"
Restart your terminal or run:
Build failures
Clear the build cache and retry:
Next Steps
- Quickstart — Run your first stream
- Configuration — Configure cameras and services