Last active
July 10, 2018 00:24
-
-
Save lynnaloo/b73e3e455dd961971f1d99126c4911fe to your computer and use it in GitHub Desktop.
NodeBots Development Environment Install Script
This file contains 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 | |
sudo apt-get install -y software-properties-common | |
sudo add-apt-repository -y ppa:webupd8team/atom | |
sudo apt-get update -y | |
sudo apt-get install -y -qq git curl vim bluetooth | |
sudo apt-get install -y -qq libbluetooth-dev build-essential openssh-client bluez | |
sudo apt-get install -y atom | |
curl -L https://git.io/n-install | bash -s -- -y | |
. /home/admin/.bashrc | |
# update to versions compatible with Johnny-Five | |
./n/bin/n 6.14.3 | |
git clone https://github.com/norfolkjs/motorized-sumobot.git | |
cd motorized-sumobot | |
npm i |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment