Created
May 8, 2017 03:14
-
-
Save hugs/8b89a27ba57e0f67bc1d134f53da673d to your computer and use it in GitHub Desktop.
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
sudo apt-get update | |
sudo apt-get upgrade | |
# Install needed tools | |
sudo apt-get install build-essential | |
sudo apt-get install chromium-browser | |
sudo apt-get install vim | |
sudo apt-get install curl | |
sudo apt-get install python | |
curl -sL https://deb.nodesource.com/setup_6.x -o nodesource_setup.sh | |
sudo bash nodesource_setup.sh | |
sudo apt-get install nodejs | |
# Change prompt in terminal (append "PS1='$ '" to end) | |
vim ~/.bashrc | |
source ~/.bashrc | |
# Project setup | |
mkdir Projects | |
cd Projects/ | |
mkdir j5temp | |
cd j5temp/ | |
npm init | |
npm install johnny-five | |
# Create and run program | |
vim blink.js | |
sudo node blink.js |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment