Skip to content
This repository has been archived by the owner on Feb 25, 2020. It is now read-only.

Fix up raspberryPi doc #42

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions raspberryPi.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ If you're already familiar with the command line, or you are comfortable setting
sudo apt-get install git htop rng-tools
wget http://node-arm.herokuapp.com/node_latest_armhf.deb
sudo dpkg -i node_latest_armhf.deb
rm node_latest_armhf.deb

#
#
Expand All @@ -38,12 +39,14 @@ If you're already familiar with the command line, or you are comfortable setting
# Install DFU-Util
#
sudo apt-get install libusb-1.0-0-dev
wget http://dfu-util.gnumonks.org/releases/dfu-util-0.7.tar.gz
wget http://dfu-util.sourceforge.net/releases/dfu-util-0.7.tar.gz
tar xvf dfu-util-0.7.tar.gz
cd dfu-util-0.7
./configure
make
sudo make install
cd ..
rm dfu-util-0.7.tar.gz


#
Expand All @@ -62,7 +65,7 @@ If you're already familiar with the command line, or you are comfortable setting
cd /spark

git clone https://github.com/spark/spark-server.git
cd spark-server/js
cd spark-server
npm install
node main.js
```