Installation
Installing headless AugeLab Studio varies depending on your operating system. Follow the instructions below for your specific platform.
Windows
Using the AugeLab Studio installer manually sets up the headless runtime already and is the recommended way to install Headless Studio on Windows.
Linux
Download the Linux installer script from account.augelab.com. The installer supports Debian and Debian-based distributions, including Ubuntu. It creates an isolated virtual environment at ~/studio_venv, installs the selected studio package profile, and creates desktop launchers when UI mode is selected.
The installer does not install NVIDIA drivers. For AI/GPU mode, install the NVIDIA driver on the host first. AugeLab Studio ships the CUDA runtimes it needs. On Jetson devices, use the JetPack/NVIDIA driver stack for your device.
Full installation
Use this for the regular desktop + headless installation:
chmod +x installer.sh
./installer.sh --uiThis installs studio[ui], creates ~/studio_venv, adds the augelab_studio launcher, and creates desktop entries.
After installation, run:
augelab_studioFull installation with AI/GPU support
Install the NVIDIA driver first, then run:
This installs studio[ui,gpu].
Docker with CPU/CUDA on x86_64
For customer deployments, build the container image from a Dockerfile. AugeLab Studio is a closed-source application, so Docker installs the studio package from the AugeLab package index instead of building Studio from source.
Use Docker Example as the canonical Docker guide. It includes:
CPU Dockerfile
GPU/CUDA Dockerfile
docker-compose.yml.envscenario runner script
mounted output folder
CPU Docker
Use CPU Docker when your scenario does not need CUDA acceleration. The Docker example builds from python:3.12-slim-bookworm and installs studio.
GPU/CUDA
AugeLab Studio supports CUDA acceleration for headless scenarios. GPU Docker requires compatible NVIDIA drivers and NVIDIA Container Toolkit on the host.
Use the GPU/CUDA Dockerfile in Docker Example. It builds from an NVIDIA CUDA runtime image and installs studio[gpu].
ARM64 (Raspberry Pi, Jetson Nano/AGX)
AugeLab Studio supports ARM64 architecture for headless usage on Debian-based devices such as Raspberry Pi and NVIDIA Jetson series.
Download the Linux ARM64 installer scripts from account.augelab.com, then run the installer on the device.
Full ARM64 installation
This installs studio[ui], creates ~/studio_venv, adds the augelab_studio launcher, and creates desktop entries.
Full ARM64 installation with AI/GPU support
Install the correct JetPack/NVIDIA driver stack for your device first.
This installs studio[ui,gpu].
For Jetson GPU deployments, match the installer, JetPack/NVIDIA driver stack, and AugeLab package profile for your device.
Last updated