Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save crashmatt/60d1321dbcb518a03eae3354871fe0dd to your computer and use it in GitHub Desktop.
Save crashmatt/60d1321dbcb518a03eae3354871fe0dd to your computer and use it in GitHub Desktop.
ROS Melodic installation on Raspberry Pi Zero/Raspberry Pi Zero W
#!/usr/bin/env bash
set -eu
# (C) 2019 Daisuke Sato
# https://tiryoh.mit-license.org/2019
# Special thanks to @nomumu
sudo apt update
sudo apt install -y build-essential gdebi
mkdir -p ~/tmp && pushd ~/tmp
wget https://github.com/nomumu/ros4raspbian/releases/download/1.0.0/ros4raspbian-melodic-armhf-1.0.0.zip
unzip ros4raspbian-melodic-armhf-1.0.0.zip
sudo gdebi ros4raspbian-melodic-armhf-1.0.0.deb
popd
rosdep update
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment