From 896e42061d540c6ca0fcf096be33be503532c7d0 Mon Sep 17 00:00:00 2001 From: dherrada <33632497+dherrada@users.noreply.github.com> Date: Fri, 18 Oct 2019 10:17:59 -0400 Subject: [PATCH 1/2] Added PyPi installation instructions --- README.rst | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/README.rst b/README.rst index c988299..7949c81 100644 --- a/README.rst +++ b/README.rst @@ -28,6 +28,31 @@ Please ensure all dependencies are available on the CircuitPython filesystem. This is easily achieved by downloading `the Adafruit library and driver bundle `_. +Installing from PyPI +==================== + +On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally `from +PyPI `_. To install for current user: + +.. code-block:: shell + + pip3 install adafruit-circuitpython-amg88xx + +To install system-wide (this may be required in some cases): + +.. code-block:: shell + + sudo pip3 install adafruit-circuitpython-amg88xx + +To install in a virtual environment in your current project: + +.. code-block:: shell + + mkdir project-name && cd project-name + python3 -m venv .env + source .env/bin/activate + pip3 install adafruit-circuitpython-amg88xx + Usage Example ============= From 3b8c89bdb1087ece0c9e53f0fc88fd99d8600717 Mon Sep 17 00:00:00 2001 From: dherrada <33632497+dherrada@users.noreply.github.com> Date: Fri, 27 Dec 2019 22:32:54 -0500 Subject: [PATCH 2/2] Not sure why this has been happening --- README.rst | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README.rst b/README.rst index a194233..289675b 100644 --- a/README.rst +++ b/README.rst @@ -29,12 +29,8 @@ This is easily achieved by downloading `the Adafruit library and driver bundle `_. Installing from PyPI -<<<<<<< HEAD --------------------- -======= ==================== ->>>>>>> 896e42061d540c6ca0fcf096be33be503532c7d0 On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally `from PyPI `_. To install for current user: