This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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" |