From 1b9c63aa440c7d975c14c75e898d35f545fc61aa Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Wed, 20 Jul 2016 11:39:04 +0100 Subject: [PATCH] Add `apt-get install wiringpi` to README Fix #37 --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a2034ff..ec0aee0 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ WiringPi implements new functions for managing IO expanders. A quick and dirty build script is supplied to install WiringPi-Python for Python 2 and 3. Just: ``` +sudo apt-get install wiringpi git clone --recursive https://github.com/WiringPi/WiringPi-Python.git cd WiringPi-Python ./build.sh @@ -26,9 +27,10 @@ git submodule update --init ##Prerequisites To rebuild the bindings -you **must** first have python-dev, python-setuptools and swig installed. +you **must** first have python-dev, python-setuptools and swig installed. Wiring Pi should also be installed system-wide +for access to the `gpio` tool. ```bash -sudo apt-get install python-dev python-setuptools swig +sudo apt-get install python-dev python-setuptools swig wiringpi ``` ##Build WiringPi