Download & install Damru
Install with pip install damru, pull the Redroid image, and run the environment check.
Quickstart
python3 -m venv .venv && source .venv/bin/activate
pip install damru
python -m damru setup
python -m damru install-image
python -m damru check-env Minimal example
from damru import AsyncDamru
async with AsyncDamru(device="random") as browser:
page = await browser.new_page()
await page.goto("https://example.com")
print(await page.title()) Direct downloads
Most users only need the two commands above — install-image auto-pulls the image. These are the raw assets if you need them:
Pre-baked Redroid image — ~1.2 GB · recommended (instant boot, no APK assembly)
https://damru.dev/assets/damru-baked.tar.gz
Chrome / WebView / TTS APK bundle — ~3.3 GB · advanced (raw/unbaked Redroid, image baking, or APK recovery)
https://damru.dev/assets/chrome-apks.zip
Requirements
- Ubuntu 24.04 LTS — native Linux or WSL2 on Windows
- 2+ vCPU, 4+ GB RAM (8 GB recommended), 15+ GB disk per worker
- Docker, ADB, and
binderfskernel support - A residential proxy is recommended for realistic stealth testing
Full docs: GitHub /docs · Source: github.com/akwin1234/damru