From 8e06938e35f5b6a243fe88a0f7b31a45b9ba48d1 Mon Sep 17 00:00:00 2001 From: Dylan Herrada <33632497+dherrada@users.noreply.github.com> Date: Tue, 23 Feb 2021 14:26:04 -0500 Subject: [PATCH] Removed installing from PyPI since OneWire doesn't work on Linux --- README.rst | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/README.rst b/README.rst index d4b7f0d..4019d1a 100644 --- a/README.rst +++ b/README.rst @@ -27,31 +27,6 @@ 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-ds18x20 - -To install system-wide (this may be required in some cases): - -.. code-block:: shell - - sudo pip3 install adafruit-circuitpython-ds18x20 - -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-ds18x20 - Usage Example =============