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)

Download damru-baked.tar.gz →

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)

Download chrome-apks.zip →

https://damru.dev/assets/chrome-apks.zip

Requirements

Full docs: GitHub /docs · Source: github.com/akwin1234/damru