# Clone the repositorygit clone https://github.com/droidrun/droidrun.gitcd droidrun# Create a virtual environment (highly recommended)python -m venv .venv# Activate the virtual environment# On Windows:.venv\Scripts\activate# On macOS/Linux:source .venv/bin/activate# Install dependencies and the package in development modepip install -e .
Using a virtual environment helps isolate DroidRunβs dependencies from your global Python environment, preventing potential conflicts with other packages.
# Using default (Gemini)droidrun "Open the settings app"# Using specific provider and modeldroidrun "Open calculator" --provider Gemini --model models/gemini-2.5-pro# With vision and planningdroidrun "Take a screenshot and describe what's on the screen" --vision --reasoning# Using local Ollamadroidrun "Check battery level" --provider Ollama --model llama2