MAVProxy on Raspberry Pi
Hardware
- Raspberry Pi (tested on a Raspberry Pi Zero 2 W)
Software
- Raspberry Pi OS (tested on Raspberry Pi OS Lite 64-bit)
Update and Upgrade
sudo apt-get -y update && sudo apt-get -y upgradeEnable Serial Interface
- Open
raspi-config
sudo raspi-config-
Select
Interface Options
-
Select
Serial Port
-
Say
Nofor Login Shell
-
Say
Yesto enable Serial Hardware
Install Dependencies
sudo apt-get install python3-dev python3-opencv python3-future python3-pip python3-matplotlib python3-lxml python3-pygameInstall MAVProxy
python3 -m pip install PyYAML mavproxy --user --break-system-packages
echo 'export PATH="$PATH:$HOME/.local/bin"' >> ~/.bashrcAdd User to Dialout Group
sudo usermod -a -G dialout $USERReboot
sudo reboot