1. Hardware Setup
Assemble your Reachy Mini following our step-by-step guide. The kit includes all necessary components and takes about 30 minutes to complete.
# Connect via USB-C (Lite) or WiFi (Wireless)
# Robot auto-discovery on network
2. Install Python SDK
Install the official Reachy Mini Python library with full API access to motors, sensors, and AI capabilities.
pip install reachy-mini
# or
pip install reachy-mini[full] # with AI extras
3. First Program
Write your first Reachy Mini program in just a few lines of Python code.
from reachy_mini import ReachyMini
robot = ReachyMini()
robot.head.look_at(0, 0, 30)
robot.antennas.happy()
robot.say("Hello, I'm Reachy Mini!")
4. Deploy to Hugging Face
Share your creations with the community using our Hugging Face integration and app templates.
# Use our app template
git clone https://github.com/pollen-robotics/reachy_mini_app_example
# Customize and deploy to HF Spaces