You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 26, 2018. It is now read-only.
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:
4
17
5
18
```bash
6
19
sudo apt-get install python3-gpiozero
7
20
```
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