Skip to content

Commit

Permalink
Updated README to reflect some pre-requisites. Relates to Issue #41
Browse files Browse the repository at this point in the history
  • Loading branch information
tim committed Jun 18, 2019
1 parent 7111be7 commit bd09cb7
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions software/README.md
Expand Up @@ -26,12 +26,12 @@ The following procedure will install all the necessary TART software on a Raspbe
### Step 1. Prepare the Pi

Install docker on the raspberry pi. This is done by following commands.

sudo apt install python3-pip libffi-dev python3-cffi gcc libssl-dev python3-dev

curl -fsSL get.docker.com -o get-docker.sh && sh get-docker.sh
sudo groupadd docker
sudo gpasswd -a $USER docker
newgrp docker
sudo pip install docker-compose
sudo usermod -aG docker $USER
sudo pip3 install docker-compose
sudo reboot

### Step 2. Copy code to the Pi

Expand All @@ -49,6 +49,7 @@ SSH into the raspberry pi after completing step 1.

cd software
docker-compose build
This last step can take ages (around 1 hour or so)

This will build all the necessary sofware on the Pi. To run all the software an services. Type

Expand Down

0 comments on commit bd09cb7

Please sign in to comment.