Fix upgrade instructions

'apt-get upgrade' always upgrades all packages, to upgrade a single package we need to use 'apt-get install'
This commit is contained in:
Andrew Scheller
2015-12-01 10:19:57 +00:00
parent 942859b5a2
commit 21f542cb8d

View File

@@ -74,13 +74,13 @@ sudo apt-get install python-gpiozero
Upgrade to the latest version with:
```bash
sudo apt-get upgrade python3-gpiozero
sudo apt-get install python3-gpiozero
```
or:
```bash
sudo apt-get upgrade python-gpiozero
sudo apt-get install python-gpiozero
```
## Getting started