Skip to content

Installing RoboCrew

To install RoboCrew on your Raspberry Pi, follow these steps:

  1. Update System Packages (if you haven’t already):

    sudo apt update && sudo apt upgrade -y
  2. Install Python (if not already installed):

    sudo apt install -y python3-pip
  3. Set Up Python Environment (optional but HIGHLY recommended):

    python3 -m venv robocrew-env
    source robocrew-env/bin/activate
  4. Install RoboCrew:

    pip install robocrew
  5. Install Additional Dependencies: For audio support (if using voice commands):

    sudo apt install portaudio19-dev