Fix broken internal links and use apt over apt-get

This commit is contained in:
Ben Nuttall
2017-03-10 15:05:33 +00:00
parent 8c2264566a
commit d846d5b2bd
5 changed files with 42 additions and 34 deletions

View File

@@ -2,39 +2,39 @@
Installing GPIO Zero
====================
GPIO Zero is installed by default in `Raspbian Jessie`_ and `PIXEL x86`_, available
from `raspberrypi.org`_. Follow these guides to installing on other operating
systems, including for PCs using the :doc:`remote_gpio` feature.
GPIO Zero is installed by default in `Raspbian Jessie`_ and `PIXEL x86`_,
available from `raspberrypi.org`_. Follow these guides to installing on other
operating systems, including for PCs using the :doc:`remote_gpio` feature.
Raspberry Pi
============
First, update your repositories list::
sudo apt-get update
sudo apt update
Then install the package for Python 3::
sudo apt-get install python3-gpiozero
sudo apt install python3-gpiozero
or Python 2::
sudo apt-get install python-gpiozero
sudo apt install python-gpiozero
Linux
=====
First, update your distribution's repositories list. For example::
sudo apt-get update
sudo apt update
Then install pip for Python 3::
sudo apt-get install python3-pip
sudo apt install python3-pip
or Python 3::
sudo apt-get install python-pip
sudo apt install python-pip
(Alternatively, install pip with `get-pip`_.)
@@ -75,8 +75,8 @@ Next, install gpiozero with pip::
pip install gpiozero
.. Raspbian Jessie_: https://www.raspberrypi.org/downloads/raspbian/
.. PIXEL x86_: https://www.raspberrypi.org/blog/pixel-pc-mac/
.. raspberrypi.org_: https://www.raspberrypi.org/downloads/
.. get-pip_: https://pip.pypa.io/en/stable/installing/
.. GitHub: https://github.com/RPi-Distro/python-gpiozero/issues
.. _Raspbian Jessie: https://www.raspberrypi.org/downloads/raspbian/
.. _PIXEL x86: https://www.raspberrypi.org/blog/pixel-pc-mac/
.. _raspberrypi.org: https://www.raspberrypi.org/downloads/
.. _get-pip: https://pip.pypa.io/en/stable/installing/
.. _GitHub: https://github.com/RPi-Distro/python-gpiozero/issues