Merge pull request #39 from joerick/patch-1

Add `apt-get install wiringpi` to README
diff --git a/README.md b/README.md
index 993a037..b386333 100644
--- a/README.md
+++ b/README.md
@@ -14,6 +14,7 @@
 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
@@ -30,9 +31,10 @@
 
 ## 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