Skip to content

Instantly share code, notes, and snippets.

View Redoblue's full-sized avatar

merlinbao Redoblue

View GitHub Profile
@Redoblue
Redoblue / install_ros_kinetic_raspian_buster.sh
Last active March 15, 2022 15:42 — forked from frank9615/install_ros_kinetic_raspian_buster.sh
Install ros kinetic on raspbian buster
#!/bin/bash
# Install ros kinetic on raspian buster
cd ~
wget http://sourceforge.net/projects/boost/files/boost/1.58.0/boost_1_58_0.tar.gz
tar xvzf boost_1_58_0.tar.gz
mkdir ~/build
cd boost_1_58_0/
sudo ./bootstrap.sh
sudo ./b2 install —prefix="../build"