Skip to content
This repository was archived by the owner on Mar 26, 2018. It is now read-only.

Commit 81e6a8f

Browse files
committed
Enhance software instructions
1 parent a60362c commit 81e6a8f

File tree

1 file changed

+23
-2
lines changed

1 file changed

+23
-2
lines changed

software.md

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,28 @@
1-
# Software Installation
1+
# Software installation
22

3-
To install the software you need, run the following commands in the Terminal:
3+
You'll need to make sure you have the following packages installed to proceed with the worksheet:
4+
5+
- GPIO Zero
6+
7+
You'll need to be online to install software.
8+
9+
First, update and upgrade your system. Enter the following commands into the terminal:
10+
11+
```bash
12+
sudo apt-get update
13+
sudo apt-get upgrade
14+
```
15+
16+
Now install the software you'll need:
417

518
```bash
619
sudo apt-get install python3-gpiozero
720
```
21+
22+
Check that you have everything you need by entering the following commands:
23+
24+
```bash
25+
python3 -c "import gpiozero"
26+
```
27+
28+
This should bring you back to the command prompt with no errors. If you get an error saying `No module named gpiozero`, then check you entered the commands above correctly.

0 commit comments

Comments
 (0)