From efd266a01f4071d1c1b640e6bd9ffcb7406291d1 Mon Sep 17 00:00:00 2001 From: dherrada <33632497+dherrada@users.noreply.github.com> Date: Fri, 18 Oct 2019 10:55:34 -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 7606d10..477a5d3 100644 --- a/README.rst +++ b/README.rst @@ -26,6 +26,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-avrprog + +To install system-wide (this may be required in some cases): + +.. code-block:: shell + + sudo pip3 install adafruit-circuitpython-avrprog + +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-avrprog + Usage Example ============= From 2ae22bb9dadb6a9d4de949cdd000b8680c356460 Mon Sep 17 00:00:00 2001 From: dherrada <33632497+dherrada@users.noreply.github.com> Date: Mon, 23 Dec 2019 15:47:13 -0500 Subject: [PATCH 2/2] Remove merge conflicts --- README.rst | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README.rst b/README.rst index bca1792..b727d29 100644 --- a/README.rst +++ b/README.rst @@ -27,12 +27,8 @@ This is easily achieved by downloading `the Adafruit library and driver bundle `_. Installing from PyPI -<<<<<<< HEAD --------------------- -======= ==================== ->>>>>>> efd266a01f4071d1c1b640e6bd9ffcb7406291d1 On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally `from PyPI `_. To install for current user: