• Docs >
  • FedML Installation on Raspberry Pi

FedML Installation on Raspberry Pi

Install Docker on Your Raspberry Pi (skip this if you already installed Docker)

  1. Update and upgrade your apt-get package tool

sudo apt-get update && sudo apt-get upgrade
  1. Download Docker installation script

curl -fsSL https://get.docker.com -o get-docker.sh
  1. Execute the installation script

sudo sh get-docker.sh
  1. Add a non-root user to the Docker group

sudo usermod -aG docker [your-user]

Install with pip

pip install fedml
source ~/.profile  ## run this command if '/home/user/.local/bin' is not on PATH' after installation