From 89b6be2e1d53de9beab5c1a86ee48e0dc737082a Mon Sep 17 00:00:00 2001 From: Gaston Williams Date: Sun, 14 Nov 2021 15:12:44 -0500 Subject: [PATCH] Updated readme with Upgrade instructions --- README.rst | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.rst b/README.rst index f454b62..34f9a12 100644 --- a/README.rst +++ b/README.rst @@ -157,6 +157,24 @@ Usage Example # use QwiicJoystick(i2c, address) for a different address # joystick = QwiicJoystick(i2c, 0x21)""" +Upgrading +========= +On supported GNU/Linux systems like the Raspberry Pi, you can upgrade the driver locally `from +PyPI `_. + +To upgrade for current user: + +.. code-block:: shell + + pip3 install --upgrade sparkfun-circuitpython-qwiicjoystick + +To upgrade system-wide (this may be required in some cases): + +.. code-block:: shell + + sudo pip3 install --upgrade sparkfun-circuitpython-qwiicjoystick + + Contributing ============